@Generated(value="jsii-pacmak/1.73.0 (build 6faeda3)", date="2023-01-25T18:29:09.973Z") public interface HelmChartProps extends 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
ICluster getCluster()
[disable-awslint:ref-via-interface]
static HelmChartProps.Builder builder()
builder
in interface HelmChartOptions
HelmChartProps.Builder
of HelmChartProps