0
点赞
收藏
分享

微信扫一扫

helm

芝婵 2023-04-19 阅读 71
helm运维

tar -zxvf helm-v3.11.3-linux-amd64.tar.gz

cp linux-amd64/helm /usr/local/bin/

helm repo add bitnami https://charts.bitnami.com/bitnami

helm search repo bitnami      # list the charts you can install

helm repo update                 # Make sure we get the latest list of charts

 helm install bitnami/mysql --generate-name

 helm show chart bitnami/mysql

helm show all bitnami/mysq l # get all information about the chart.

helm list   

helm uninstall mysql-1612624192     # uninstall a release

helm status mysql-1612624192         # release history 

helm get -h                                      # reading the Help Text


举报

相关推荐

0 条评论