Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@nrjpoddar
Last active November 8, 2018 20:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nrjpoddar/a651f6839c4264af5e088ebdae7c8229 to your computer and use it in GitHub Desktop.
Save nrjpoddar/a651f6839c4264af5e088ebdae7c8229 to your computer and use it in GitHub Desktop.
If you have ever have to downgrade Helm here are the steps (e.g. to version 2.8.2:
1) Download the binary for OSX from here: https://storage.googleapis.com/kubernetes-helm/helm-v2.8.2-darwin-amd64.tar.gz
2) mkdir -p /tmp/helm; tar -C /tmp/helm ~/Downloads/helm-v2.8.2-darwin-amd64.tar.gz
3) mv /tmp/helm/darwin-amd64/helm /usr/local/bin
4) rm -rf /tmp/helm ~/Downloads/helm-v2.8.2-darwin-amd64.tar.gz
5) helm init --client-only
6) Next, install helm diff, note that "helm plugin install https://github.com/databus23/helm-diff --version v2.8.2+2" doesn't work.
7) Instead download and move the helm-diff plugin in the $HELM_HOME dir.
Note `brew install kubernetes-helm` doesn't work for old releases.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment