📜  helm 备忘单 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:50:43.361000             🧑  作者: Mango

代码示例1
helm repo add bitnami https://charts.bitnami.com/bitnami # Adding Repo
helm repo update    # Update Repo
helm repo list         # List Repo

helm search hub      # Search in hub
helm search repo  # Search local repo

helm install myredis bitnami/redis  # Install Release
helm install -f myvalues.yaml myredis bitnami/redis # Install Using Value yaml
helm install   -n  # Install in Particular namespace
helm list -n  # List of release in Particular namespace
helm list -A 

helm uninstall                  # Uninstall Release
helm uninstall  -n  # Uninstall Release in Particular namespace

helm version # Check Version