生活随笔
收集整理的這篇文章主要介紹了
                                
chart制作流程
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.                        
 
                                
                            
                            
                            #創建一個chart范例
helm create helm-chart
#檢查chart語法
helm lint ./helm-chart
#使用默認chart部署到k8s
helm install --name example1 ./helm-chart --set service.type=NodePort
#查看當前的部署列表
helm ls
#打包chart
helm package ./helm-chart --debug
#使用包去做release部署
helm install --name example2 helm-chart-0.1.0.tgz --set service.type=NodePort
#升級當前release
helm upgrade example2 ./helm-chart
#回滾當前release
helm rollback example2 1  
#刪除該release
helm delete example2
helm del --purge example2
                            總結
                            
                                以上是生活随笔為你收集整理的chart制作流程的全部內容,希望文章能夠幫你解決所遇到的問題。
                            
                            
                                如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。