@Generated(value="jsii-pacmak/1.46.0 (build cd08c55)", date="2021-11-28T00:25:30.190Z") @Stability(value=Stable) public interface HelmProps extends software.amazon.jsii.JsiiSerializable
Modifier and Type | Interface and Description |
---|---|
static class |
HelmProps.Builder
A builder for
HelmProps |
static class |
HelmProps.Jsii$Proxy
An implementation for
HelmProps |
Modifier and Type | Method and Description |
---|---|
static HelmProps.Builder |
builder() |
String |
getChart()
The chart name to use.
|
default String |
getHelmExecutable()
The local helm executable to use in order to create the manifest the chart.
|
default List<String> |
getHelmFlags()
Additional flags to add to the `helm` execution.
|
default String |
getReleaseName()
The release name.
|
default Map<String,Object> |
getValues()
Values to pass to the chart.
|
@Stability(value=Stable) @NotNull String getChart()
This name is passed to helm template
and has all the relevant semantics.
Example:
// Example automatically generated from non-compiling source. May contain errors. "bitnami/redis";
@Stability(value=Stable) @Nullable default String getHelmExecutable()
Default: "helm"
@Stability(value=Stable) @Nullable default List<String> getHelmFlags()
Default: []
@Stability(value=Stable) @Nullable default String getReleaseName()
Default: - if unspecified, a name will be allocated based on the construct path
https://helm.sh/docs/intro/using_helm/#three-big-concepts
@Stability(value=Stable) @Nullable default Map<String,Object> getValues()
Default: - If no values are specified, chart will use the defaults.
@Stability(value=Stable) static HelmProps.Builder builder()
HelmProps.Builder
of HelmProps
Copyright © 2021. All rights reserved.