Skip to content

cloudbees-io/helm-install

Repository files navigation

CloudBees action: Install a Helm chart

Use this action to install a Helm chart into a Kubernetes cluster.

Note
This action does not support using Helm charts from traditional Helm repositories, because it does not expose a respository input.

Inputs

Table 1. Input details
Input name Data type Required? Description

release-name

String

Yes

The Helm release name.

chart-location

String

Yes

The Helm chart location, which is one of:

  • An OCI-based chart URL.

  • A local chart in TGZ archive format.

  • An unpacked local chart directory.

Usage example

In your YAML file, add:

      - name: Install Helm chart
        uses: cloudbees-io/helm-install@v1
        with:
          release-name: nginx
          chart-location: oci://ghcr.io/nginxinc/charts/nginx-ingress

License

This code is made available under the MIT license.

References