Created
March 17, 2019 10:29
-
-
Save dompascal/2d56c9f3f9ea295677041492c145c94b to your computer and use it in GitHub Desktop.
This file contains 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
#!/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