These commands can be used for basic Helm chart management.
helm search hub <keyword>
helm search repo <keyword>
helm pull <chart>
helm install <name> <chart>
helm upgrade <release> <chart>
helm rollback <release> <chart>
helm uninstall <release>
These commanDs are focused on managing the repositories.
helm repo add <name> <url>
helm repo list
helm repo remove <name>
helm repo update
helm repo indec <directory>
These commands are focused on maintaining Helm releases.
helm status <release>
helm list
helm history <release>
helm get manifest <release>
These are the commands you can use to build and manage your own Helm charts.
helm create <name>
helm template <name> <chart>
helm package <chart>
helm lint <chart>