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: defaultrelease (
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
Attributes
-
chart
¶ (deprecated) The name of the chart.
- Stability
deprecated
- Return type
str
-
namespace
¶ (deprecated) The Kubernetes namespace scope of the requests.
- Default
default
- Stability
deprecated
- Return type
Optional
[str
]
-
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
- Return type
Optional
[str
]
-
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
- Return type
Optional
[str
]
-
values
¶ (deprecated) The values to be used by the chart.
- Default
No values are provided to the chart.
- Stability
deprecated
- Return type
Optional
[Mapping
[str
,Any
]]
-
version
¶ (deprecated) The chart version to install.
- Default
If this is not specified, the latest version is installed
- Stability
deprecated
- Return type
Optional
[str
]