반응형
- 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
1. Helm 설치
공식문서: https://helm.sh/docs/intro/install/#from-script
단 3줄의 명령어로 helm을 간단하게 설치할 수 있습니다. 2021년 기준 helm을 설치하면 helm3이 설치됩니다.
$ curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3
$ chmod 700 get_helm.sh
$ ./get_helm.sh
반응형
'연재 시리즈' 카테고리의 다른 글
Helm 시작하기 - 6편. values.yaml 오버라이딩 (0) | 2021.11.23 |
---|---|
Helm 시작하기 - 5편. helm 차트 템플릿 값 동적 수정 (0) | 2021.11.23 |
Helm 시작하기 - 4편. helm 차트 설치, 조회, 삭제 (0) | 2021.11.22 |
Helm 시작하기 - 3편. helm 차트 생성 (0) | 2021.11.22 |
Helm 시작하기 - 1편. helm이란? (0) | 2021.11.19 |