MoinMoin Logo
  • Comments
  • Immutable Page
  • Menu
    • Navigation
    • RecentChanges
    • FindPage
    • Local Site Map
    • Help
    • HelpContents
    • HelpOnMoinWikiSyntax
    • Display
    • Attachments
    • Info
    • Raw Text
    • Print View
    • Edit
    • Load
    • Save
  • Login

Navigation

  • Start
  • Sitemap
Revision 2 as of 2023-08-31 08:59:18
  • kubernetes
  • helm

helm

  • https://helm.sh/

  • https://helm.sh/docs/intro/quickstart/

Package manager for kubernetes

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

   1 kubectl get endpoints 
   2 helm version
   3 helm create helm-test
   4 cd helm-test
   5 #define placeholders and values
   6 # values.yaml 
   7 
   8 # deployment template that uses values
   9 # templates/deployment.yaml 
  10 
  11 # service template that uses values
  12 # templates/service.yaml 
  13 
  14 # get value of variable foo defined in the values.yaml
  15 # {{ .Values.foo }} 
  16 
  17 # render values in k8s yaml template
  18 helm template .
  19 # checks yaml template
  20 helm lint .
  21 # install the helm chart on k8s 
  22 helm install helm-test .
  23 helm package . 
  • MoinMoin Powered
  • Python Powered
  • GPL licensed
  • Valid HTML 4.01