Helm
Install
curl https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3 | bash
helm completion bash | sudo tee /usr/share/bash-completion/completions/helm > /dev/nullHelm Stable
helm repo add stable https://charts.helm.sh/stable
helm repo updateShow values
helm show values <repo/app> --version ${APP_HELM_VER} > APP_values.yaml
#Deploy
helm install ingress-nginx ingress-nginx/ingress-nginx -f ingress-nginx.yaml --namespace ingress-nginx --create-namespaceDownload
helm fetch stable/fluentd-elasticsearchLast updated