@Generated(value="jsii-pacmak/1.71.0 (build f1f58ae)", date="2022-12-07T17:24:46.710Z") @Stability(value=Stable) 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 `addHelmChart`
cluster.addHelmChart("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
A fluent builder for
HelmChart. |
software.amazon.jsii.JsiiObject.InitializationModeIConstruct.Jsii$Default, IConstruct.Jsii$Proxy| Modifier and Type | Field and Description |
|---|---|
static String |
RESOURCE_TYPE
The CloudFormation resource type.
|
| Modifier | Constructor and Description |
|---|---|
|
HelmChart(software.constructs.Construct scope,
String id,
HelmChartProps props) |
protected |
HelmChart(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) |
protected |
HelmChart(software.amazon.jsii.JsiiObjectRef objRef) |
getNode, isConstruct, onPrepare, onSynthesize, onValidate, prepare, synthesize, validatejsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSet@Stability(value=Stable) public static final String RESOURCE_TYPE
protected HelmChart(software.amazon.jsii.JsiiObjectRef objRef)
protected HelmChart(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
@Stability(value=Stable)
public HelmChart(@NotNull
software.constructs.Construct scope,
@NotNull
String id,
@NotNull
HelmChartProps props)
scope - This parameter is required.id - This parameter is required.props - This parameter is required.Copyright © 2022. All rights reserved.