KubernetesHelmChartResource Constructors
Class Constructors 1 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
name string The name of the Helm chart resource. environment KubernetesEnvironmentResource The parent Kubernetes environment resource. chartReference string The Helm chart reference (e.g., an OCI URL). chartVersion string The Helm chart version to install.