KubernetesHelmChartResource Properties
Class Properties 5 members
Represents an external Helm chart to be installed into a Kubernetes environment. This resource models a Helm chart from a repository (OCI or HTTP) that will be installed as a pipeline step after the main application Helm chart is deployed.
Gets the Helm chart reference. This can be an OCI registry URL (e.g.,
oci://quay.io/jetstack/charts/cert-manager) or a chart name from an added repository. public string ChartReference { get; } Gets the chart version to install.
public string ChartVersion { get; } Gets or sets the Kubernetes namespace to install the chart into. Defaults to the chart resource name if not specified.
public string? Namespace { get; set; } Gets the parent Kubernetes environment resource.
public KubernetesEnvironmentResource Parent { get; } Gets or sets the Helm release name. Defaults to the resource name.
public string? ReleaseName { get; set; }