@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:38.937Z") @Stability(value=Stable) public interface HelmChartProps extends software.amazon.jsii.JsiiSerializable, HelmChartOptions
Example:
Cluster cluster;
// option 1: use a construct
// option 1: use a construct
HelmChart.Builder.create(this, "NginxIngress")
.cluster(cluster)
.chart("nginx-ingress")
.repository("https://helm.nginx.com/stable")
.namespace("kube-system")
.build();
// or, option2: use `addHelmChart`
cluster.addHelmChart("NginxIngress", HelmChartOptions.builder()
.chart("nginx-ingress")
.repository("https://helm.nginx.com/stable")
.namespace("kube-system")
.build());
| Modifier and Type | Interface and Description |
|---|---|
static class |
HelmChartProps.Builder
A builder for
HelmChartProps |
static class |
HelmChartProps.Jsii$Proxy
An implementation for
HelmChartProps |
| Modifier and Type | Method and Description |
|---|---|
static HelmChartProps.Builder |
builder() |
ICluster |
getCluster()
The EKS cluster to apply this configuration to.
|
getChart, getChartAsset, getCreateNamespace, getNamespace, getRelease, getRepository, getTimeout, getValues, getVersion, getWait@Stability(value=Stable) @NotNull ICluster getCluster()
[disable-awslint:ref-via-interface]
@Stability(value=Stable) static HelmChartProps.Builder builder()
builder in interface HelmChartOptionsHelmChartProps.Builder of HelmChartPropsCopyright © 2022. All rights reserved.