目錄nginx
1 helm 倉庫查看api
2 helm 倉庫添加ide
3 helm 倉庫刪除google
4 helm 查詢 chartspa
1 helm 倉庫查看
blog
# helm repo listip
首次安裝 helm 3 是沒有指定默認倉庫的。須要手動瘋狂添加倉庫才能夠獲取到程序包。rem
2 helm 倉庫添加
get
使用以下命令添加 helm 倉庫。kubernetes
# helm repo add stable https://kubernetes.oss-cn-hangzhou.aliyuncs.com/charts
# helm repo add google https://kubernetes-charts.storage.googleapis.com
# helm repo add jetstack https://charts.jetstack.io
3 helm 倉庫刪除
若是有一天你以爲手癢,能夠使用以下命令刪除 helm 倉庫。不用擔憂什麼可怕後果,更不要大聲尖叫。這裏並非真實刪除倉庫,只是刪除指向實際倉庫的連接而已。若是後悔了,大不了再使用上面的命令添加回來。
# helm repo remove stable
# helm repo remove google
# helm repo remove jetstack
4 helm 查詢 chart
添加完上面的 helm 倉庫後,就能夠愉快的查找你深愛的程序包(chart)了。
## helm search repo chart_name,好比想查找 nginx 的 chart,使用以下命令:
# helm search repo nginx