Skip to content

Instantly share code, notes, and snippets.

@dompascal
Created March 17, 2019 10:29
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 dompascal/2d56c9f3f9ea295677041492c145c94b to your computer and use it in GitHub Desktop.
Save dompascal/2d56c9f3f9ea295677041492c145c94b to your computer and use it in GitHub Desktop.
#!/bin/sh
export HELM_VERSION=v2.9.1
export HELM_INSTALL_DIR=~/usr/local/bin
wget https://kubernetes-helm.storage.googleapis.com/helm-$HELM_VERSION-linux-arm.tar.gz -P ~/downloads
tar xvzf ~/downloads/helm-$HELM_VERSION-linux-arm.tar.gz -C ~/downloads
sudo mv ~/downloads/linux-arm/helm $HELM_INSTALL_DIR
rm -rf ~/downloads/linux-arm
helm list
helm init --tiller-image elafargue/tiller:arm2.9.0 --tiller-namespace kube-system --service-account tiller
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment