쿠버네티스
Windows에서 Helm bitnami 레포지토리 추가 방법
ksb-dev
2024. 5. 26. 17:53
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