헬름 설치 공식문서

brew install helm

설치 끝...! 간단!

chart 만들기

❯ helm create <chart name>

❯ tree
.
├── Chart.yaml
├── charts
├── templates
│   ├── NOTES.txt
│   ├── _helpers.tpl
│   ├── deployment.yaml
│   ├── hpa.yaml
│   ├── ingress.yaml
│   ├── service.yaml
│   ├── serviceaccount.yaml
│   └── tests
│       └── test-connection.yaml
└── values.yaml

3 directories, 10 files

리소스들을 클러스터 내에 설치

# helm install <release name> <chart directory>
❯ helm install name .

❯ helm list
NAME                    NAMESPACE       REVISION        ...                              
<release name>          default         1               ...                                        

변경사항 반영

helm으로 띄운 리소스들은 helm을 통해 관리 가능