본문 바로가기
software engineering/k8s

Helm - Developing Templates

by _블로그 2021. 2. 17.

 

https://v2.helm.sh/docs/chart_template_guide/#the-chart-template-developer-s-guide

v2 기준

 

Getting Started

A FIRST TEMPLATE

ConfigMap을 생성하는 것을 example로 하여 설명. 아래 명령어로 기본 chart 생성 후

 

$ helm create mychart

deployment.yaml이 아닌 configmap.yaml를 생성하여 진행. yaml 파일 네이밍은 모두 소문자로 하는게 룰인 듯.

apiVersion: v1
kind: ConfigMap
metadata:
  name: mychart-configmap
data:
  myvalue: "Hello World"

Template의 네이밍은 엄격한 룰은 없지만 yaml 파일은 .yaml, helpers 파일은 .tpl 을 권장.

 

LIST

댓글