k8sのパッケージマネージャ helm を使おうと思ってインストール後、
helm install コマンドを実行したらエラーで怒られた
$ helm init
$ helm install stable/redis-ha
Error: no available release name found
どうやら Default の RBACの設定だとうまく動かない模様・・・
以下のコマンド実行したら、インストールできた
$ kubectl create serviceaccount --namespace kube-system tiller
$ kubectl create clusterrolebinding tiller-cluster-rule --clusterrole=cluster-admin --serviceaccount=kube-system:tiller
$ kubectl patch deploy --namespace kube-system tiller-deploy -p '{"spec":{"template":{"spec":{"serviceAccount":"tiller"}}}}'