Last active
October 1, 2019 09:17
-
-
Save zeusbaba/be060440bcf77c4c8ef392b52b42f2c9 to your computer and use it in GitHub Desktop.
Helm in DO-k8s
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# install Helm, see https://helm.sh | |
# get the installer script | |
curl https://raw.githubusercontent.com/kubernetes/helm/master/scripts/get > helm-install.sh | |
chmod u+x helm-install.sh | |
# IF you want to install latest 'stable' version | |
./helm-install.sh | |
# IF you want to install a specific version, f.eks. in-dev version | |
sudo ./helm-install.sh --version v3.0.0-beta.3 | |
# now init and update | |
helm init | |
helm repo update | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment