= helm = {{{#!highlight sh kubectl get endpoints helm version helm create helm-test cd helm-test # values.yaml , define placeholders and values # templates/deployment.yaml deployment template that uses values # templates/service.yaml service template that uses values # {{ .Values.foo }} , get valor of variable foo defined in the values.yaml # render values in k8s yaml template helm template . # checks yaml template helm lint . # install the helm chart on k8s helm install helm-test . helm install helm-test . }}}