Skip to content

Instantly share code, notes, and snippets.

@mohanpedala
Last active January 18, 2023 21:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save mohanpedala/c9dff3c3772f726b0b93edb827df0bdb to your computer and use it in GitHub Desktop.
Save mohanpedala/c9dff3c3772f726b0b93edb827df0bdb 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.0.2-linux-amd64.tar.gz

tar xvf helm-v3.0.2-linux-amd64.tar.gz
  • Move the package to the below location
mv linux-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-linux-amd64.tar.gz

tar -xzvf helm-v2.16.9-linux-amd64.tar.gz
  • Move the package to the below location
mv linux-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