Class ChartFetchArgs
Additional options to customize the fetching of the Helm chart.
Inheritance
Inherited Members
Namespace: Pulumi.Kubernetes.Helm
Assembly: Pulumi.Kubernetes.dll
Syntax
public class ChartFetchArgs
Properties
View SourceCAFile
Verify certificates of HTTPS-enabled servers using this CA bundle.
Declaration
public Input<string> CAFile { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
CertFile
Identify HTTPS client using this SSL certificate file.
Declaration
public Input<string> CertFile { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
Destination
Location to write the chart. If this and tardir are specified, tardir is appended to this (default ".").
Declaration
public Input<string> Destination { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
Devel
Use development versions, too. Equivalent to version '>0.0.0-0'. If --version is set, this is ignored.
Declaration
public Input<bool> Devel { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Boolean> |
Home
Location of your Helm config. Overrides $HELM_HOME (default "/Users/alex/.helm").
Declaration
public Input<string> Home { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
KeyFile
Identify HTTPS client using this SSL key file.
Declaration
public Input<string> KeyFile { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
Keyring
Keyring containing public keys (default "/Users/alex/.gnupg/pubring.gpg").
Declaration
public Input<string> Keyring { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
Password
Chart repository password.
Declaration
public Input<string> Password { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
Prov
Fetch the provenance file, but don't perform verification.
Declaration
public Input<bool> Prov { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Boolean> |
Repo
Chart repository url where to locate the requested chart.
Declaration
public Input<string> Repo { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
Untar
If set to false, will leave the chart as a tarball after downloading.
Declaration
public Input<bool> Untar { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Boolean> |
UntarDir
If untar is specified, this flag specifies the name of the directory into which the chart is expanded (default ".").
Declaration
public Input<string> UntarDir { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
Username
Chart repository username.
Declaration
public Input<string> Username { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
Verify
Verify the package against its signature.
Declaration
public Input<bool> Verify { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Boolean> |
Version
Specific version of a chart. Without this, the latest version is fetched.
Declaration
public Input<string> Version { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |