helm

   1 kubectl get endpoints 
   2 helm version
   3 helm create helm-test
   4 cd helm-test
   5 # values.yaml , define placeholders and values
   6 # templates/deployment.yaml deployment template that uses values
   7 # templates/service.yaml service template that uses values
   8 # {{ .Values.foo }} , get valor of variable foo defined in the values.yaml
   9 
  10 # render values in k8s yaml template
  11 helm template .
  12 # checks yaml template
  13 helm lint .
  14 # install the helm chart on k8s 
  15 helm install helm-test .
  16 helm install helm-test .

kubernetes/helm (last edited 2023-08-11 15:20:54 by 127)