Skip to content

Instantly share code, notes, and snippets.

@mulecalle
Forked from mohanpedala/helm-install.md
Last active December 19, 2022 16:23
Show Gist options
  • Select an option

  • Save mulecalle/f06e3b923a135dc9b5bb143904c847da to your computer and use it in GitHub Desktop.

Select an option

Save mulecalle/f06e3b923a135dc9b5bb143904c847da to your computer and use it in GitHub Desktop.
helm 2 and helm 3 installation on a linux machine

Helm 3 installation

  • Download the package and untar it.
wget https://get.helm.sh/helm-v3.10.3-darwin-amd64.tar.gz

tar xvf helm-v3.0.2-darwin-amd64.tar.gz
  • Move the package to the below location
mv darwin-amd64/helm /usr/local/bin/helm3
  • Verify the version
bash-5.0# helm3 version --short
v3.0.2+g19e47ee

Helm 2 installation

  • Download the package and untar it.
wget https://get.helm.sh/helm-v2.16.9-darwin-amd64.tar.gz

tar -xzvf helm-v2.16.9-darwin-amd64.tar.gz
  • Move the package to the below location
mv darwin-amd64/helm /usr/local/bin/helm
  • Verify the version
bash-5.0# helm version --short
Client: v2.16.9+g8ad7037
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment