Skip to content

Instantly share code, notes, and snippets.

@rms1000watt
Last active December 8, 2020 22:35
Show Gist options
  • Save rms1000watt/7b532dc1bb12395f3a92c47bbea1ef87 to your computer and use it in GitHub Desktop.
Save rms1000watt/7b532dc1bb12395f3a92c47bbea1ef87 to your computer and use it in GitHub Desktop.
Install Helm2 and Helmfile
# Cleanup
brew uninstall --force helmfile helm
# Install helmfile latest with latest helm
brew install helmfile
# Install an old version of helm2
curl https://get.helm.sh/helm-v2.14.3-darwin-amd64.tar.gz
tar -zxvf helm-v2.14.3-darwin-amd64.tar.gz
cp darwin-amd64/helm /usr/local/bin/helm2
# Cleanup
rm -rf darwin-amd64
rm helm-v2.14.3-darwin-amd64.tar.gz
# Use helm2
helmfile -b helm2 -f stable/blah.yaml diff
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment