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());