2019年9月13日金曜日

helm設定

以下の表示が出る場合、大抵は、tiller serverが稼働してないのが原因

1)helm install stable/mysql

2)Helm version を行うと、Clientが稼働しているがServerが稼働してないという状態。

3)以下のコマンドでtiller serverの起動を行うこと
tiller-listen=localhost:44134-storage=secret-logtostderr


■helmコマンド一覧
コマンド
説明
helm repo list
リポジトリ一覧を表示する                                   
helm repo add
リポジトリを追加する
helm search
デプロイ可能なChartを表示する
helm install
アプリケーションをインストールする(k8sクラスタにデプロイする)
helm list
インストール済みのアプリケーションを表示する
helm delete
アプリケーションをアンデプロイする
helm reset
tillerをアンデプロイする




0 件のコメント:

コメントを投稿

Redis(helm install)

local-storage  は  動的プロビジョニングされない  ため、Helm のインストール時に  PersistentVolume (PV) を事前に作成する必要があります 。 手順: 1)strage classをlocal strageを指定 helm install...