Show / Hide Table of Contents

Class ChartArgs

Inheritance
System.Object
InputArgs
ResourceArgs
BaseChartArgs
ChartArgs
Inherited Members
BaseChartArgs.ApiVersions
BaseChartArgs.Namespace
BaseChartArgs.Values
BaseChartArgs.Transformations
BaseChartArgs.ResourcePrefix
ResourceArgs.Empty
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 Source

Chart

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>
View Source

FetchOptions

Additional options to customize the fetching of the Helm chart.

Declaration
public Input<ChartFetchArgs> FetchOptions { get; set; }
Property Value
Type Description
Input<ChartFetchArgs>
View Source

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>
View Source

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>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.