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/null

Helm Stable

helm repo add stable https://charts.helm.sh/stable

helm repo update

Show 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-namespace

Download

helm fetch stable/fluentd-elasticsearch

Last updated