helm常用命令解析

roc_guo發表於2020-12-20

helm常用命令解析helm常用命令解析

helm管理

檢視版本

#helm version

增加repo

#helm repo add stable 
#helm repo add --username admin --password password myharbor 

更新repo倉庫資源

#helm repo update
charts管理

檢視當前安裝的charts

#helm list

將helm search hub顯示所有可用圖表。

#helm search hub redis

使用helm search repo,您可以在已新增的儲存庫中找到charts的名稱:

#helm search repo redis

列印出指定的Charts的詳細資訊

#helm show chart stable/redis

下載charts到本地

#helm fetch redis

安裝charts

#helm install redis stable/redis

檢視charts狀態

#helm status redis

刪除charts

#helm uninstall redis
自定義charts

建立charts

#helm create helm_charts

檢查chart語法正確性

# helm lint myapp

打包自定義的chart

# helm package myapp

檢視生成的yaml檔案

#helm template myapp-1.tgz

使用預設chart部署到k8s

helm install myapp myapp-1.tgz

使用包去做release部署

helm install --name example2 helm-chart-0.1.0.tgz --set service.type=NodePort
更新與回滾

檢視當前chart資訊

#helm list

更新images

#helm upgrade myapp myapp-2.tgz

檢視版本資訊

#helm history myapp

回滾指定版本

#helm rollback myapp 1

原文來自: https://www.cuiliangblog.cn/blog/show-111/

本文地址:


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69901823/viewspace-2743803/,如需轉載,請註明出處,否則將追究法律責任。

相關文章