HelmChartOptions

class aws_cdk.aws_eks_legacy.HelmChartOptions(*, chart, namespace=None, release=None, repository=None, values=None, version=None)

Bases: object

(deprecated) Helm Chart options.

Parameters:
  • chart (str) – (deprecated) The name of the chart.

  • namespace (Optional[str]) – (deprecated) The Kubernetes namespace scope of the requests. Default: default

  • release (Optional[str]) – (deprecated) The name of the release. Default: - If no release name is given, it will use the last 63 characters of the node’s unique id.

  • repository (Optional[str]) – (deprecated) The repository which contains the chart. For example: https://kubernetes-charts.storage.googleapis.com/ Default: - No repository will be used, which means that the chart needs to be an absolute URL.

  • values (Optional[Mapping[str, Any]]) – (deprecated) The values to be used by the chart. Default: - No values are provided to the chart.

  • version (Optional[str]) – (deprecated) The chart version to install. Default: - If this is not specified, the latest version is installed

Stability:

deprecated

ExampleMetadata:

infused

Example:

# cluster: eks.Cluster

# option 1: use a construct
eks.HelmChart(self, "NginxIngress",
    cluster=cluster,
    chart="nginx-ingress",
    repository="https://helm.nginx.com/stable",
    namespace="kube-system"
)

# or, option2: use `addChart`
cluster.add_chart("NginxIngress",
    chart="nginx-ingress",
    repository="https://helm.nginx.com/stable",
    namespace="kube-system"
)

Attributes

chart

(deprecated) The name of the chart.

Stability:

deprecated

namespace

(deprecated) The Kubernetes namespace scope of the requests.

Default:

default

Stability:

deprecated

release

(deprecated) The name of the release.

Default:
  • If no release name is given, it will use the last 63 characters of the node’s unique id.

Stability:

deprecated

repository

(deprecated) The repository which contains the chart.

For example: https://kubernetes-charts.storage.googleapis.com/

Default:
  • No repository will be used, which means that the chart needs to be an absolute URL.

Stability:

deprecated

values

(deprecated) The values to be used by the chart.

Default:
  • No values are provided to the chart.

Stability:

deprecated

version

(deprecated) The chart version to install.

Default:
  • If this is not specified, the latest version is installed

Stability:

deprecated