본문 바로가기

SW Development

[Helm] popular commands

새로운 helm chart 생성

helm create <<my-service-helm>>

 

Lint Error check

helm lint ./<<my-service-helm>>

 

# Template에 있는 value를 보고 싶을 때

helm template ./<<my-service-helm>>

 

# Dry run: 설치 전 manifest file을 보고 싶을 때

helm install --dry-run -deug ./<<my-service-helm>>

 

# 설치

helm install

 

# 설치된 것 확인

helm list

 

# 지우기

helm delete 

 

# Update

helm upgrade --install <<service_name>> <<my-service-helm path>> -f <<custom-value.yml path>>

i.e) helm upgrade --install my-sample_service ./my-sample-service-helm -f ./my-sample-service-helm /others/custom-values.yml

'SW Development' 카테고리의 다른 글

[Kubernetes] cheating sheet  (0) 2020.04.07
[Docker] Cheating sheet  (0) 2020.03.28
Conditional Segue  (0) 2016.03.27
Code productivity  (0) 2015.09.13