跳到主要内容

quickstart

https://helm.sh/docs/intro/quickstart/

install

https://helm.sh/docs/intro/install/

curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3
chmod 700 get_helm.sh
./get_helm.sh

Initialize a Helm Chart Repository

类似于ubuntu的apt系统,可以添加chart repository

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

Install an Example Chart

helm repo update 

helm install bitnami/mysql --generate-name

Learn About Releases

helm list

Uninstall a Release

helm status mysql-1612624192

helm uninstall mysql-1612624192