helm
helm <subcommand> --help
helm repo add <repo_name> <repo_url>
helm repo update
helm search -l <repo_name>
helm upgrade --install <pod_name> <repo_name> -f <path/to_config_file.yml>
helm status <pod_name>
helm get values <pod_name> > values.yml
helm delete <release_name> --purge
helm ls --all --short | xargs -L1 helm delete --purge