본문 바로가기

컨테이너/Kubernetes

helm 설치 하는 방법 (리눅스)

Helm 설치하는 방법 / 리눅스 환경

 

helm은 릴리즈 버전에 따라 지원되는 kubernetes 버전이 상이하므로 먼저 아래 사이트에서 helm버전과 호환되는 kubernetes 버전을 확인 후에 해당 tar 파일을 다운 받는 것을 권고 하고 있다.

 

 

 

1. 설치한 쿠버네티스의 버전에 따라 알맞은 Helm 릴리즈 버전을 먼저 확인을 해준다.

 

Helm 릴리즈 버전 확인 : https://helm.sh/docs/topics/version_skew/

 

Helm Version Support Policy

Describes Helm's patch release policy as well as the maximum version skew supported between Helm and Kubernetes.

helm.sh

 

출처 : https://helm.sh/docs/topics/version_skew/

 

 

 

 

2. 원하는 helm 버전을 다운로드 해준다.

https://github.com/helm/helm/releases

 

Releases · helm/helm

The Kubernetes Package Manager. Contribute to helm/helm development by creating an account on GitHub.

github.com

 


3. 압축해제한다.

tar -zxvf [helm tar 파일]


4. 압축해제된 디렉토리에서 helm 바이너리를 /usr/local/bin/helm으로 이동시킨다.

 

mv [helm 바이너리] /usr/local/bin/helm

 

5. 정상적으로 helm 명령을 실행할 수 있는지 확인

helm version

helm version을 확인했을 때 정상적으로 버전 정보가 나오면 helm 설치 성공!

 

 

* 참고

 

https://helm.sh/ko/docs/intro/install/

 

헬름 설치하기

헬름 설치하고 작동하는 방법 배우기.

helm.sh