### 1. tiller安裝失敗
執行完init命令后,一直沒有反應,
```bash
kubectl create serviceaccount --namespace kube-system tillerkubectl create clusterrolebinding tiller-cluster-rule --clusterrole=cluster-admin --serviceaccount=kube-system:tiller
helm init --service-account tiller --upgrade -i womsgoogle/tiller:v2.11.0--stable-repo-url https://kubernetes.oss-cn-hangzhou.aliyuncs.com/charts
```
下面這條命令不用執行
```bash
patch deploy --namespace kube-system tiller-deploy -p
```
### 2. helm安裝超時
```
helm upgrade --install --wait my-release datawire/ambassador
```
`--wait` :if set, will wait until all Pods, PVCs, Services, and minimum number of Pods of a Deployment are in a ready state before marking the release as successful. It will wait for as long as --timeout
只要kubernetes內部有資源pending,命令就執行不成功,會超時
so,建議把`--wait`去掉,不然就確保所有資源都在running狀態