반응형
- helm 시리즈 목차
- 1편 helm이란? : https://malwareanalysis.tistory.com/193
- 2편 helm 설치 : https://malwareanalysis.tistory.com/194
- 3편 helm차트 생성: https://malwareanalysis.tistory.com/195
- 4편 helm 차트 설치, 조회, 삭제: https://malwareanalysis.tistory.com/196
- 5편 helm 차트 템플릿 값 동적 수정: https://malwareanalysis.tistory.com/197
- 6편 values.yaml 오버라이딩: https://malwareanalysis.tistory.com/198
- 7편 Release Object사용: https://malwareanalysis.tistory.com/200
- 8편 namespace설정: https://malwareanalysis.tistory.com/201
- 9편 Release 업그레이드: https://malwareanalysis.tistory.com/202
- 10편 Rollback: https://malwareanalysis.tistory.com/203
안녕하세요. 4편에서는 3편에서 생성한 helm 차트를 설치, 조회, 삭제하는 방법을 설명합니다.
영상에서는 14:30 ~ 17:30에 해당합니다.
https://youtu.be/ajcyC_6velc?t=874
1. 준비
3편에서 만든 helm차트가 필요합니다.
3편 바로가기: https://malwareanalysis.tistory.com/195
2. helm 차트 설치
helm install명령어로 설치할 수 있습니다.
helm install <설치할 차트이름> <차트 경로>
예제 설치명령어는 아래와 같습니다.
helm install ttt ./
helm이 설치되면 kubectl get deployment,svc를 이용해서 배포된 템플릿 리소스를 확인할 수 있습니다. helm isntall을 default로 namespace에서 리소스를 배포합니다.
kubectl get deploy,svc
3. 설치된 helm 차트 조회 - release 조회
helm차트를 설치하면 release되었다고 표현합니다. release를 조회하는 방법은 helm list를 사용하면 됩니다.
helm list
4. 설치된 helm 차트 삭제 - release 삭제
release를 삭제하는 방법은 helm delete(또는 uninstall)명령어를 사용하면 됩니다.
helm delete <Release 이름>
반응형
'연재 시리즈' 카테고리의 다른 글
Helm 시작하기 - 6편. values.yaml 오버라이딩 (0) | 2021.11.23 |
---|---|
Helm 시작하기 - 5편. helm 차트 템플릿 값 동적 수정 (0) | 2021.11.23 |
Helm 시작하기 - 3편. helm 차트 생성 (0) | 2021.11.22 |
Helm 시작하기 - 2편. helm 설치 (0) | 2021.11.22 |
Helm 시작하기 - 1편. helm이란? (0) | 2021.11.19 |