@Generated(value="jsii-pacmak/1.63.2 (build a8a8833)", date="2022-08-02T20:25:36.494Z") @Deprecated public class HelmChart extends Construct
Applies/deletes the resources using kubectl
in sync with the resource.
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());
Modifier and Type | Class and Description |
---|---|
static class |
HelmChart.Builder
Deprecated.
|
IConstruct.Jsii$Default, IConstruct.Jsii$Proxy
Modifier and Type | Field and Description |
---|---|
static java.lang.String |
RESOURCE_TYPE
Deprecated.
|
Modifier | Constructor and Description |
---|---|
|
HelmChart(Construct scope,
java.lang.String id,
HelmChartProps props)
Deprecated.
|
protected |
HelmChart(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
Deprecated.
|
protected |
HelmChart(software.amazon.jsii.JsiiObjectRef objRef)
Deprecated.
|
getNode, isConstruct, onPrepare, onSynthesize, onValidate, prepare, synthesize, validate
@Deprecated public static final java.lang.String RESOURCE_TYPE
protected HelmChart(software.amazon.jsii.JsiiObjectRef objRef)
protected HelmChart(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
@Deprecated public HelmChart(Construct scope, java.lang.String id, HelmChartProps props)
scope
- This parameter is required.id
- This parameter is required.props
- This parameter is required.