helm repo add bitnami https://charts.bitnami.com/bitnami # Adding Repo
helm repo update # Update Repo
helm repo list # List Repo
helm search hub <charts-name> # Search in hub
helm search repo <charts-name> # Search local repo
helm install myredis bitnami/redis # Install Release
helm install -f myvalues.yaml myredis bitnami/redis # Install Using Value yaml
helm install <release-name> <charts-name> -n <namespace> # Install in Particular namespace
helm list -n <namespace-name> # List of release in Particular namespace
helm list -A
helm uninstall <release-name> # Uninstall Release
helm uninstall <release-name> -n <namespace> # Uninstall Release in Particular namespace
helm version # Check Version