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.780Z")
@Stability(Deprecated)
@Deprecated
public interface HelmChartProps
extends software.amazon.jsii.JsiiSerializable, HelmChartOptions
Deprecated.
(deprecated) 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 `addChart`
cluster.addChart("NginxIngress", HelmChartOptions.builder()
.chart("nginx-ingress")
.repository("https://helm.nginx.com/stable")
.namespace("kube-system")
.build());
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classDeprecated.static final classDeprecated. -
Method Summary
Modifier and TypeMethodDescriptionstatic HelmChartProps.Builderbuilder()Deprecated.Deprecated.Methods inherited from interface software.amazon.awscdk.services.eks.legacy.HelmChartOptions
getChart, getNamespace, getRelease, getRepository, getValues, getVersionMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCluster
Deprecated.(deprecated) The EKS cluster to apply this configuration to.[disable-awslint:ref-via-interface]
-
builder
Deprecated.- Returns:
- a
HelmChartProps.BuilderofHelmChartProps
-