HelmChart

class aws_cdk.aws_eks_legacy.HelmChart(scope, id, *, cluster, chart, namespace=None, release=None, repository=None, values=None, version=None)

Bases: Construct

(deprecated) Represents a helm chart within the Kubernetes system.

Applies/deletes the resources using kubectl in sync with the resource.

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"
)
Parameters:
  • scope (Construct) –

  • id (str) –

  • cluster (Cluster) – (deprecated) The EKS cluster to apply this configuration to. [disable-awslint:ref-via-interface]

  • 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

Methods

to_string()

Returns a string representation of this construct.

Return type:

str

Attributes

RESOURCE_TYPE = 'Custom::AWSCDK-EKS-HelmChart'
node

The construct tree node associated with this construct.

Static Methods

classmethod is_construct(x)

Return whether the given object is a Construct.

Parameters:

x (Any) –

Return type:

bool