1. Helm 다운로드
choco install kubernetes-helm
https://docs.aws.amazon.com/eks/latest/userguide/helm.html
Using Helm with Amazon EKS - Amazon EKS
If you get a message that openssl must first be installed, you can install it with the following command. sudo yum install openssl
docs.aws.amazon.com
2. 버전 확인
helm version
3. Helm 레포지토리 설정 (stable)
helm repo add stable https://charts.helm.sh/stable
4. 레포지토리에서 사용 가능한 것 검색
helm search repo stable

5. Stable 버전을 봐보니 Desceiption에 대부분 Deprecated가 적혀져 있어서 찾아보니, 유지보수 비용 증가로 helm3 부터 공식적인 지원이 중단됨
Helm | Helm Chart Repository Deprecation Update
Helm Chart Repository Deprecation Update
Helm - The Kubernetes Package Manager.
helm.sh
6. Helm 공식 홈페이지에도 bitnami를 사용하고 있음
퀵스타트 가이드
배포판, FAQ, 플러그인의 설명을 포함한 헬름 설치 및 시작 방법
helm.sh
7. bitnami 레포지토리 설정
helm repo add bitnami https://charts.bitnami.com/bitnami
8. 레포지토리 업데이트
helm repo update
'쿠버네티스' 카테고리의 다른 글
리소스 부족과 eks scale 수정 (0) | 2024.05.26 |
---|---|
EKS로 ALB Ingress생성 시, ADDRESS가 비어있는 에러 (0) | 2024.05.26 |
3. 쿠버네티스에서 애플리케이션을 동작시키는 구조 - 6 (0) | 2023.04.21 |
3. 쿠버네티스에서 애플리케이션을 동작시키는 구조 - 5 (0) | 2023.04.21 |
3. 쿠버네티스에서 애플리케이션을 동작시키는 구조 - 4 (0) | 2023.03.31 |