diff --git a/source/Octopus.Client.Tests/PublicSurfaceAreaFixture.ThePublicSurfaceAreaShouldNotRegress..NETCore.approved.txt b/source/Octopus.Client.Tests/PublicSurfaceAreaFixture.ThePublicSurfaceAreaShouldNotRegress..NETCore.approved.txt index 84798dafe..2c5cba630 100644 --- a/source/Octopus.Client.Tests/PublicSurfaceAreaFixture.ThePublicSurfaceAreaShouldNotRegress..NETCore.approved.txt +++ b/source/Octopus.Client.Tests/PublicSurfaceAreaFixture.ThePublicSurfaceAreaShouldNotRegress..NETCore.approved.txt @@ -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; } diff --git a/source/Octopus.Client.Tests/PublicSurfaceAreaFixture.ThePublicSurfaceAreaShouldNotRegress..NETFramework.approved.txt b/source/Octopus.Client.Tests/PublicSurfaceAreaFixture.ThePublicSurfaceAreaShouldNotRegress..NETFramework.approved.txt index 77223e5e6..012d357b2 100644 --- a/source/Octopus.Client.Tests/PublicSurfaceAreaFixture.ThePublicSurfaceAreaShouldNotRegress..NETFramework.approved.txt +++ b/source/Octopus.Client.Tests/PublicSurfaceAreaFixture.ThePublicSurfaceAreaShouldNotRegress..NETFramework.approved.txt @@ -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; } diff --git a/source/Octopus.Server.Client/Model/Endpoints/KubernetesEndpointResource.cs b/source/Octopus.Server.Client/Model/Endpoints/KubernetesEndpointResource.cs index c2875360b..01f1426c4 100644 --- a/source/Octopus.Server.Client/Model/Endpoints/KubernetesEndpointResource.cs +++ b/source/Octopus.Server.Client/Model/Endpoints/KubernetesEndpointResource.cs @@ -29,6 +29,10 @@ public class KubernetesEndpointResource : EndpointResource [Trim] [Writeable] public string ProxyId { get; set; } + + [Trim] + [Writeable] + public string ContainerOptions { get; set; } [Trim] [Writeable]