knative-report/deploy/install_helm.sh
Torma Kristóf affbe46d96
All checks were successful
continuous-integration/drone/push Build is passing
Update 'deploy/install_helm.sh'
2020-02-18 21:26:16 +01:00

11 lines
346 B
Bash

#!/bin/bash
#Install helm using snap
apt install -y snapd
snap install helm --channel=2.16/stable --classic
#Init helm with an admin tiller pod.
kubectl create serviceaccount tiller -n kube-system
kubectl create clusterrolebinding tiller --clusterrole cluster-admin --serviceaccount kube-system:tiller
helm init --wait --service-account tiller