Class ChartArgs
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Kubernetes.Helm
Assembly: Pulumi.Kubernetes.dll
Syntax
public class ChartArgs : BaseChartArgs
Properties
View SourceChart
The name of the chart to deploy. If Repo is provided, this chart name will be prefixed by the repo name. Example: Repo: "stable", Chart: "nginx-ingress" -> "stable/nginx-ingress" Example: Chart: "stable/nginx-ingress" -> "stable/nginx-ingress"
Declaration
public Input<string> Chart { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
FetchOptions
Additional options to customize the fetching of the Helm chart.
Declaration
public Input<ChartFetchArgs> FetchOptions { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<ChartFetchArgs> |
Repo
The repository name of the chart to deploy. Example: "stable"
Declaration
public Input<string> Repo { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
Version
The version of the chart to deploy. If not provided, the latest version will be deployed.
Declaration
public Input<string> Version { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |