Show / Hide Table of Contents

Class BaseChartArgs

Inheritance
System.Object
InputArgs
ResourceArgs
BaseChartArgs
ChartArgs
LocalChartArgs
Inherited Members
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 BaseChartArgs : ResourceArgs

Properties

View Source

ApiVersions

The optional kubernetes api versions used for Capabilities.APIVersions.

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

Namespace

The optional namespace to install chart resources into.

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

ResourcePrefix

An optional prefix for the auto-generated resource names. Example: A resource created with resourcePrefix="foo" would produce a resource named "foo-resourceName".

Declaration
public string ResourcePrefix { get; set; }
Property Value
Type Description
System.String
View Source

Transformations

Optional array of transformations to apply to resources that will be created by this chart prior to creation. Allows customization of the chart behaviour without directly modifying the chart itself.

Declaration
public List<TransformationAction> Transformations { get; set; }
Property Value
Type Description
System.Collections.Generic.List<TransformationAction>
View Source

Values

Overrides for chart values.

Declaration
public InputMap<object> Values { get; set; }
Property Value
Type Description
InputMap<System.Object>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.