Skip to content

Instantly share code, notes, and snippets.

@zeusbaba
Last active October 1, 2019 09:17
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 zeusbaba/be060440bcf77c4c8ef392b52b42f2c9 to your computer and use it in GitHub Desktop.
Save zeusbaba/be060440bcf77c4c8ef392b52b42f2c9 to your computer and use it in GitHub Desktop.
Helm in DO-k8s
# 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