| Modifier and Type | Method and Description |
|---|---|
HelmChart |
build() |
HelmChart.Builder |
chart(String chart)
(experimental) The name of the chart.
|
HelmChart.Builder |
cluster(Cluster cluster)
(experimental) The EKS cluster to apply this configuration to.
|
static HelmChart.Builder |
create(Construct scope,
String id) |
HelmChart.Builder |
namespace(String namespace)
(experimental) The Kubernetes namespace scope of the requests.
|
HelmChart.Builder |
release(String release)
(experimental) The name of the release.
|
HelmChart.Builder |
repository(String repository)
(experimental) The repository which contains the chart.
|
HelmChart.Builder |
values(Map<String,? extends Object> values)
(experimental) The values to be used by the chart.
|
HelmChart.Builder |
version(String version)
(experimental) The chart version to install.
|
@Stability(value=Experimental) public static HelmChart.Builder create(Construct scope, String id)
scope - This parameter is required.id - This parameter is required.HelmChart.Builder.@Stability(value=Experimental) public HelmChart.Builder chart(String chart)
chart - The name of the chart. This parameter is required.this@Stability(value=Experimental) public HelmChart.Builder namespace(String namespace)
Default: default
namespace - The Kubernetes namespace scope of the requests. This parameter is required.this@Stability(value=Experimental) public HelmChart.Builder release(String release)
Default: - If no release name is given, it will use the last 63 characters of the node's unique id.
release - The name of the release. This parameter is required.this@Stability(value=Experimental) public HelmChart.Builder repository(String repository)
For example: https://kubernetes-charts.storage.googleapis.com/
Default: - No repository will be used, which means that the chart needs to be an absolute URL.
repository - The repository which contains the chart. This parameter is required.this@Stability(value=Experimental) public HelmChart.Builder values(Map<String,? extends Object> values)
Default: - No values are provided to the chart.
values - The values to be used by the chart. This parameter is required.this@Stability(value=Experimental) public HelmChart.Builder version(String version)
Default: - If this is not specified, the latest version is installed
version - The chart version to install. This parameter is required.this@Stability(value=Experimental) public HelmChart.Builder cluster(Cluster cluster)
[disable-awslint:ref-via-interface]
cluster - The EKS cluster to apply this configuration to. This parameter is required.thisCopyright © 2022. All rights reserved.