Package org.cdk8s
Class HelmProps.Jsii$Proxy
- java.lang.Object
-
- software.amazon.jsii.JsiiObject
-
- org.cdk8s.HelmProps.Jsii$Proxy
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationMode
-
Nested classes/interfaces inherited from interface org.cdk8s.HelmProps
HelmProps.Builder, HelmProps.Jsii$Proxy
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
Jsii$Proxy(HelmProps.Builder builder)
Constructor that initializes the object based on literal property values passed by theHelmProps.Builder
.protected
Jsii$Proxy(software.amazon.jsii.JsiiObjectRef objRef)
Constructor that initializes the object based on values retrieved from the JsiiObject.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description com.fasterxml.jackson.databind.JsonNode
$jsii$toJson()
boolean
equals(Object o)
String
getChart()
The chart name to use.String
getHelmExecutable()
The local helm executable to use in order to create the manifest the chart.List<String>
getHelmFlags()
Additional flags to add to thehelm
execution.String
getNamespace()
Scope all resources in to a given namespace.String
getReleaseName()
The release name.String
getRepo()
Chart repository url where to locate the requested chart.Map<String,Object>
getValues()
Values to pass to the chart.String
getVersion()
Version constraint for the chart version to use.int
hashCode()
-
-
-
Constructor Detail
-
Jsii$Proxy
protected Jsii$Proxy(software.amazon.jsii.JsiiObjectRef objRef)
Constructor that initializes the object based on values retrieved from the JsiiObject.- Parameters:
objRef
- Reference to the JSII managed object.
-
Jsii$Proxy
protected Jsii$Proxy(HelmProps.Builder builder)
Constructor that initializes the object based on literal property values passed by theHelmProps.Builder
.
-
-
Method Detail
-
getChart
public final String getChart()
Description copied from interface:HelmProps
The chart name to use. It can be a chart from a helm repository or a local directory.This name is passed to
helm template
and has all the relevant semantics.Example:
"bitnami/redis"
-
getHelmExecutable
public final String getHelmExecutable()
Description copied from interface:HelmProps
The local helm executable to use in order to create the manifest the chart.Default: "helm"
- Specified by:
getHelmExecutable
in interfaceHelmProps
-
getHelmFlags
public final List<String> getHelmFlags()
Description copied from interface:HelmProps
Additional flags to add to thehelm
execution.Default: []
- Specified by:
getHelmFlags
in interfaceHelmProps
-
getNamespace
public final String getNamespace()
Description copied from interface:HelmProps
Scope all resources in to a given namespace.- Specified by:
getNamespace
in interfaceHelmProps
-
getReleaseName
public final String getReleaseName()
Description copied from interface:HelmProps
The release name.Default: - if unspecified, a name will be allocated based on the construct path
- Specified by:
getReleaseName
in interfaceHelmProps
- See Also:
- https://helm.sh/docs/intro/using_helm/#three-big-concepts
-
getRepo
public final String getRepo()
Description copied from interface:HelmProps
Chart repository url where to locate the requested chart.
-
getValues
public final Map<String,Object> getValues()
Description copied from interface:HelmProps
Values to pass to the chart.Default: - If no values are specified, chart will use the defaults.
-
getVersion
public final String getVersion()
Description copied from interface:HelmProps
Version constraint for the chart version to use.This constraint can be a specific tag (e.g. 1.1.1) or it may reference a valid range (e.g. ^2.0.0). If this is not specified, the latest version is used
This name is passed to
helm template --version
and has all the relevant semantics.Example:
"^2.0.0"
- Specified by:
getVersion
in interfaceHelmProps
-
$jsii$toJson
@Internal public com.fasterxml.jackson.databind.JsonNode $jsii$toJson()
- Specified by:
$jsii$toJson
in interfacesoftware.amazon.jsii.JsiiSerializable
-
-