Skip to content
Docs Try Aspire
Docs Try

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.
ChartReference Section titled ChartReference string
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; }
ChartVersion Section titled ChartVersion string
Gets the chart version to install.
public string ChartVersion { get; }
Namespace Section titled Namespace nullable string?
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; }
ReleaseName Section titled ReleaseName nullable string?
Gets or sets the Helm release name. Defaults to the resource name.
public string? ReleaseName { get; set; }