interface HelmChartOptions
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.EKS.Legacy.HelmChartOptions |
![]() | software.amazon.awscdk.services.eks.legacy.HelmChartOptions |
![]() | aws_cdk.aws_eks_legacy.HelmChartOptions |
![]() | @aws-cdk/aws-eks-legacy » HelmChartOptions |
⚠️ Deprecated: undefined
Helm Chart options.
Example
declare const cluster: eks.Cluster;
// option 1: use a construct
new eks.HelmChart(this, 'NginxIngress', {
cluster,
chart: 'nginx-ingress',
repository: 'https://helm.nginx.com/stable',
namespace: 'kube-system',
});
// or, option2: use `addChart`
cluster.addChart('NginxIngress', {
chart: 'nginx-ingress',
repository: 'https://helm.nginx.com/stable',
namespace: 'kube-system',
});
Properties
Name | Type | Description |
---|---|---|
chart | string | The name of the chart. |
namespace? | string | The Kubernetes namespace scope of the requests. |
release? | string | The name of the release. |
repository? | string | The repository which contains the chart. |
values? | { [string]: any } | The values to be used by the chart. |
version? | string | The chart version to install. |
chart
⚠️ Deprecated: undefined
Type:
string
The name of the chart.
namespace?
⚠️ Deprecated: undefined
Type:
string
(optional, default: default)
The Kubernetes namespace scope of the requests.
release?
⚠️ Deprecated: undefined
Type:
string
(optional, default: If no release name is given, it will use the last 63 characters of the node's unique id.)
The name of the release.
repository?
⚠️ Deprecated: undefined
Type:
string
(optional, default: No repository will be used, which means that the chart needs to be an absolute URL.)
The repository which contains the chart.
For example: https://kubernetes-charts.storage.googleapis.com/
values?
⚠️ Deprecated: undefined
Type:
{ [string]: any }
(optional, default: No values are provided to the chart.)
The values to be used by the chart.
version?
⚠️ Deprecated: undefined
Type:
string
(optional, default: If this is not specified, the latest version is installed)
The chart version to install.