Interface HelmChartOptions

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Subinterfaces:
HelmChartProps
All Known Implementing Classes:
HelmChartOptions.Jsii$Proxy, HelmChartProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:46.779Z") @Stability(Deprecated) @Deprecated public interface HelmChartOptions extends software.amazon.jsii.JsiiSerializable
Deprecated.
(deprecated) Helm Chart options.

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 `addChart`
 cluster.addChart("NginxIngress", HelmChartOptions.builder()
         .chart("nginx-ingress")
         .repository("https://helm.nginx.com/stable")
         .namespace("kube-system")
         .build());
 
  • Method Details

    • getChart

      @Stability(Deprecated) @Deprecated @NotNull String getChart()
      Deprecated.
      (deprecated) The name of the chart.
    • getNamespace

      @Stability(Deprecated) @Deprecated @Nullable default String getNamespace()
      Deprecated.
      (deprecated) The Kubernetes namespace scope of the requests.

      Default: default

    • getRelease

      @Stability(Deprecated) @Deprecated @Nullable default String getRelease()
      Deprecated.
      (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.

    • getRepository

      @Stability(Deprecated) @Deprecated @Nullable default String getRepository()
      Deprecated.
      (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.

    • getValues

      @Stability(Deprecated) @Deprecated @Nullable default Map<String,Object> getValues()
      Deprecated.
      (deprecated) The values to be used by the chart.

      Default: - No values are provided to the chart.

    • getVersion

      @Stability(Deprecated) @Deprecated @Nullable default String getVersion()
      Deprecated.
      (deprecated) The chart version to install.

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

    • builder

      @Stability(Deprecated) @Deprecated static HelmChartOptions.Builder builder()
      Deprecated.
      Returns:
      a HelmChartOptions.Builder of HelmChartOptions