본문 바로가기
Amazon AWS/EKS

Helm 명령어

by 홍띠 2023. 1. 22.

차트 조회

helm ls -n <namespace>

전체 네임스페이스 조회

helm ls -A

차트 생성

helm create <chart name>

차트 삭제

helm delete <release name> -n <namespace>

차트 문법 확인

helm lint <chart path>/

모든 네임스페이스 릴리즈 조회

helm list -A

테스트 배포

helm install --debug --dry-run <release name> <chart path>

실배포

helm install -n <namespace> <release name> <chart path>

릴리즈 삭제

helm uninstall <release name> -n <namespace>

릴리즈 업그레이드(수정사항 반영)

helm upgrade -n <namespace> <release name> <chart path>