Skip to content

Instantly share code, notes, and snippets.

@kazusato
Created February 28, 2018 20:38
Show Gist options
  • Save kazusato/b30c442c1f0a084dfd1cb9ff234037be to your computer and use it in GitHub Desktop.
Save kazusato/b30c442c1f0a084dfd1cb9ff234037be to your computer and use it in GitHub Desktop.
helm導入

helm導入時のServiceAccount, ClusterRoleBindingの設定

背景

Installing Helmに従ってhelmを導入してみたが、

$ helm install stable/mysql

としたところ、

$ Error: no available release name not found

というエラーが出た。

対応

Role-Based Access Controlに記載の「In rbac-config.yaml:」以下の通り、 ServiceAccountとClusterRoleBindingを作成した上で、

$ helm install --service-account tiller --upgrade

としたところ、その後の

$ helm install stable/mysql

も成功した。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment