[容器]helm安装配置使用

 

 

 

客户端安装:helm(船舵)

wgethttps://storage.googleapis.com/kubernetes-helm/helm-v2.2.3-linux-amd64.tar.gz

mv linux-amd64 helm-v2.2.3-linux-amd64

mv helm /usr/local/bin/

 

服务端安装:tiller(舵手)

helm init --upgrade --tiller-image gcr.io/kubernetes-helm/tiller:v2.2.2

 

快速上手:

http://dockone.io/article/1281 

https://github.com/kubernetes/helm/blob/master/docs/quickstart.md

https://github.com/kubernetes/helm/blob/master/docs/using_helm.md

 

helm get -h

helm repo update #查看仓库

 

查找:

helm search

helm search mysql

helm inspect stable/mariadb

helm inspect values stable/mariadb

 

安装:

helm install stable/mysql

helm ls #查看安装结果

卸载:

helm delete smiling-penguin

helm uninstall weavescope -n default

helm status smiling-penguin

helm rollback

查看结果:

helm list --all

 

你可能感兴趣的:([容器]helm安装配置使用)