Skip to content

Commit

Permalink
Add k8s container options (#797)
Browse files Browse the repository at this point in the history
  • Loading branch information
veochen-octopus authored Nov 3, 2023
1 parent 7039f12 commit 00ca082
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6519,6 +6519,7 @@ Octopus.Client.Model.Endpoints
String ClusterUrl { get; set; }
Octopus.Client.Model.CommunicationStyle CommunicationStyle { get; }
Octopus.Client.Model.DeploymentActionContainerResource Container { get; set; }
String ContainerOptions { get; set; }
String DefaultWorkerPoolId { get; set; }
String Namespace { get; set; }
String ProxyId { get; set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6543,6 +6543,7 @@ Octopus.Client.Model.Endpoints
String ClusterUrl { get; set; }
Octopus.Client.Model.CommunicationStyle CommunicationStyle { get; }
Octopus.Client.Model.DeploymentActionContainerResource Container { get; set; }
String ContainerOptions { get; set; }
String DefaultWorkerPoolId { get; set; }
String Namespace { get; set; }
String ProxyId { get; set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,10 @@ public class KubernetesEndpointResource : EndpointResource
[Trim]
[Writeable]
public string ProxyId { get; set; }

[Trim]
[Writeable]
public string ContainerOptions { get; set; }

[Trim]
[Writeable]
Expand Down

0 comments on commit 00ca082

Please sign in to comment.