Show / Hide Table of Contents

Class OkeHelmChartDeploymentStageExecutionProgress

Specifies the execution details for Kubernetes (OKE) helm chart deployment stage.

Inheritance
object
DeployStageExecutionProgress
OkeHelmChartDeploymentStageExecutionProgress
Inherited Members
DeployStageExecutionProgress.DeployStageDisplayName
DeployStageExecutionProgress.DeployStageId
DeployStageExecutionProgress.TimeStarted
DeployStageExecutionProgress.TimeFinished
DeployStageExecutionProgress.Status
DeployStageExecutionProgress.DeployStagePredecessors
DeployStageExecutionProgress.DeployStageExecutionProgressDetails
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 OkeHelmChartDeploymentStageExecutionProgress : DeployStageExecutionProgress

Properties

ChartUrl

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

The URL of an OCIR repository.

HelmDiff

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

Helm Diff output Example: Helm diff was successfuldata:- greeting: Version 1.0+ greeting: Version 1.1

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.

ReleaseName

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

Release name of the Helm chart.

Version

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

The version of the helm chart stored in OCIR repository.

In this article
Back to top