= helm =
 * https://helm.sh/
 * https://helm.sh/docs/intro/quickstart/
Package manager for kubernetes

 * https://helm.sh/docs/intro/install/

{{{#!highlight sh
kubectl get endpoints 
helm version
helm create helm-test
cd helm-test
#define placeholders and values
# values.yaml 

# deployment template that uses values
# templates/deployment.yaml 

# service template that uses values
# templates/service.yaml 

# get value of variable foo defined in the values.yaml
# {{ .Values.foo }} 

# render values in k8s yaml template
helm template .
# checks yaml template
helm lint .
# install the helm chart on k8s 
helm install helm-test .
helm package . 
}}}