Show / Hide Table of Contents

Class CreateOkeDeployStageDetails

Specifies the Container Engine for Kubernetes (OKE) cluster deployment stage.

Inheritance
object
CreateDeployStageDetails
CreateOkeDeployStageDetails
Inherited Members
CreateDeployStageDetails.Description
CreateDeployStageDetails.DisplayName
CreateDeployStageDetails.DeployPipelineId
CreateDeployStageDetails.DeployStagePredecessorCollection
CreateDeployStageDetails.FreeformTags
CreateDeployStageDetails.DefinedTags
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DevopsService.Models
Assembly: OCI.DotNetSDK.Devops.dll
Syntax
public class CreateOkeDeployStageDetails : CreateDeployStageDetails

Properties

KubernetesManifestDeployArtifactIds

Declaration
[Required(ErrorMessage = "KubernetesManifestDeployArtifactIds is required.")]
[JsonProperty(PropertyName = "kubernetesManifestDeployArtifactIds")]
public List<string> KubernetesManifestDeployArtifactIds { get; set; }
Property Value
Type Description
List<string>

List of Kubernetes manifest artifact OCIDs.

Remarks

Required

Namespace

Declaration
[JsonProperty(PropertyName = "namespace")]
public string Namespace { get; set; }
Property Value
Type Description
string

Default namespace to be used for Kubernetes deployment when not specified in the manifest.

OkeClusterDeployEnvironmentId

Declaration
[Required(ErrorMessage = "OkeClusterDeployEnvironmentId is required.")]
[JsonProperty(PropertyName = "okeClusterDeployEnvironmentId")]
public string OkeClusterDeployEnvironmentId { get; set; }
Property Value
Type Description
string

Kubernetes cluster environment OCID for deployment.

Remarks

Required

RollbackPolicy

Declaration
[JsonProperty(PropertyName = "rollbackPolicy")]
public DeployStageRollbackPolicy RollbackPolicy { get; set; }
Property Value
Type Description
DeployStageRollbackPolicy
In this article
Back to top