Interface HelmChartProps
- All Superinterfaces:
HelmChartOptions,software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
HelmChartProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:46.606Z")
@Stability(Stable)
public interface HelmChartProps
extends software.amazon.jsii.JsiiSerializable, HelmChartOptions
Helm Chart properties.
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());
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forHelmChartPropsstatic final classAn implementation forHelmChartProps -
Method Summary
Modifier and TypeMethodDescriptionstatic HelmChartProps.Builderbuilder()The EKS cluster to apply this configuration to.Methods inherited from interface software.amazon.awscdk.services.eks.HelmChartOptions
getChart, getChartAsset, getCreateNamespace, getNamespace, getRelease, getRepository, getTimeout, getValues, getVersion, getWaitMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCluster
The EKS cluster to apply this configuration to.[disable-awslint:ref-via-interface]
-
builder
- Returns:
- a
HelmChartProps.BuilderofHelmChartProps
-