Class Chart
Chart is a component representing a collection of resources described by an arbitrary Helm
Chart. The Chart can be fetched from any source that is accessible to the helm command
line. Values in the values.yml file can be overridden using
Pulumi.Kubernetes.Helm.BaseChartArgsUnwrap.Values (equivalent to --set or having multiple
values.yml files). Objects can be transformed arbitrarily by supplying callbacks to
Pulumi.Kubernetes.Helm.BaseChartArgsUnwrap.Transformations.
Chart does not use Tiller. The Chart specified is copied and expanded locally; the semantics are equivalent to running `helm template` and then using Pulumi to manage the resulting YAML manifests. Any values that would be retrieved in-cluster are assigned fake values, and none of Tiller's server-side validity testing is executed.
Inherited Members
Namespace: Pulumi.Kubernetes.Helm.V2
Assembly: Pulumi.Kubernetes.dll
Syntax
public sealed class Chart : ChartBase
Constructors
View SourceChart(String, Union<ChartArgs, LocalChartArgs>, ComponentResourceOptions)
Declaration
public Chart(string releaseName, Union<ChartArgs, LocalChartArgs> args, ComponentResourceOptions options = null)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | releaseName | |
| Union<ChartArgs, LocalChartArgs> | args | |
| ComponentResourceOptions | options |