Skip to content

Commit

Permalink
Added support for worker tools on a K8S target
Browse files Browse the repository at this point in the history
  • Loading branch information
mcasperson authored Jun 11, 2020
1 parent 3b8e237 commit c6f1528
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5816,9 +5816,11 @@ Octopus.Client.Model.Endpoints
String ClusterCertificate { get; set; }
String ClusterUrl { get; set; }
Octopus.Client.Model.CommunicationStyle CommunicationStyle { get; }
Octopus.Client.Model.DeploymentActionContainer Container { get; set; }
String DefaultWorkerPoolId { get; set; }
String Namespace { get; set; }
String ProxyId { get; set; }
Boolean RunningInContainer { get; set; }
String SkipTlsVerification { get; set; }
}
class KubernetesStandardAccountAuthenticationResource
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5841,9 +5841,11 @@ Octopus.Client.Model.Endpoints
String ClusterCertificate { get; set; }
String ClusterUrl { get; set; }
Octopus.Client.Model.CommunicationStyle CommunicationStyle { get; }
Octopus.Client.Model.DeploymentActionContainer Container { get; set; }
String DefaultWorkerPoolId { get; set; }
String Namespace { get; set; }
String ProxyId { get; set; }
Boolean RunningInContainer { get; set; }
String SkipTlsVerification { get; set; }
}
class KubernetesStandardAccountAuthenticationResource
Expand Down
1 change: 1 addition & 0 deletions source/Octopus.Client/Model/Endpoints/EndpointResource.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using System;
using Octopus.Client.Extensibility.Attributes;

namespace Octopus.Client.Model.Endpoints
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,11 @@ public class KubernetesEndpointResource : AgentlessEndpointResource

[Writeable]
public IEndpointWithMultipleAuthenticationResource Authentication { get; set; }

[Writeable]
public bool RunningInContainer { get; set; }

[Writeable]
public DeploymentActionContainer Container { get; set; }
}
}

0 comments on commit c6f1528

Please sign in to comment.