KubernetesHelmChartResource Constructors
ClassConstructors1 member
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.
Constructor(string, KubernetesEnvironmentResource, string, string)Section titled Constructor(string, KubernetesEnvironmentResource, string, string) Initializes a new instance of
KubernetesHelmChartResource. public sealed class KubernetesHelmChartResource{ public KubernetesHelmChartResource( string name, KubernetesEnvironmentResource environment, string chartReference, string chartVersion) { // ... }}Parameters
namestringThe name of the Helm chart resource.environmentKubernetesEnvironmentResourceThe parent Kubernetes environment resource.chartReferencestringThe Helm chart reference (e.g., an OCI URL).chartVersionstringThe Helm chart version to install.