helm

Helm 3, installed from the official installer script.

Installs Helm 3 using the project’s official installer.

devtools:
  - name: helm

Version behaviour

versionResult
omittedthe newest Helm 3 release the installer resolves
v3.16.1that exact release

Example

devtools:
  - name: docker
  - name: kind
    config:
      cluster: dev
  - name: kubectl
  - name: helm
scripts:
  - name: install-chart
    phase: user
    runPolicy: onChange
    content: |
      set -e
      helm upgrade --install myapp ./charts/myapp --wait

Notes

  • The recipe is safe to re-run: a workstation that already has helm on PATH is skipped.
  • Works on Debian, Ubuntu, and Alpine.