Show / Hide Table of Contents

Class ChartFetchArgs

Additional options to customize the fetching of the Helm chart.

Inheritance
System.Object
ChartFetchArgs
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 ChartFetchArgs

Properties

View Source

CAFile

Verify certificates of HTTPS-enabled servers using this CA bundle.

Declaration
public Input<string> CAFile { get; set; }
Property Value
Type Description
Input<System.String>
View Source

CertFile

Identify HTTPS client using this SSL certificate file.

Declaration
public Input<string> CertFile { get; set; }
Property Value
Type Description
Input<System.String>
View Source

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

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

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

KeyFile

Identify HTTPS client using this SSL key file.

Declaration
public Input<string> KeyFile { get; set; }
Property Value
Type Description
Input<System.String>
View Source

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

Password

Chart repository password.

Declaration
public Input<string> Password { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Prov

Fetch the provenance file, but don't perform verification.

Declaration
public Input<bool> Prov { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

Repo

Chart repository url where to locate the requested chart.

Declaration
public Input<string> Repo { get; set; }
Property Value
Type Description
Input<System.String>
View Source

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

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

Username

Chart repository username.

Declaration
public Input<string> Username { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Verify

Verify the package against its signature.

Declaration
public Input<bool> Verify { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

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