kubectl -n kube-system create sa tiller
kubectl create clusterrolebinding tiller --clusterrole cluster-admin --serviceaccount=kube-system:tiller
helm init --service-account tiller
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 | |
# | |
# Copyright (C) 2011 Eucalyptus Systems, Inc. | |
# | |
# Copies an EMI from one Eucalyptus cloud to another. | |
# | |
# This script takes several input parameters: | |
# | |
# -s <path to the source cloud eucarc> | |
# -d <path to the destination cloud eucarc> |