0. 목적
헬름 차트라고 불리우는 쿠버네티스 패키지를 관리 하는 도구인 Helm을 설치 해보자
헬름 차트(helm chart)란?
쿠버네티스 리소스와 관련된 셋(service,deployment 등)을 설명하는 파일의 모음이다.
이를 이용하여 쿠버네티스 애플리케이션을 설치하거나 쉽게 업데이트를 할 수 가 있다.
1. 설치
설치 환경 ubuntu 20.04
# 인스톨러 스크립트 가지고 오기
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 version
설치 확인시 2023 / 10 /30 기준 다음과 같은 결과가 나오는 것이 맞다
version.BuildInfo{Version:"v3.13.1", GitCommit:"3547a4b5bf5edb5478ce352e18858d8a552a4110", GitTreeState:"clean", GoVersion:"go1.20.8"}
2. 출처
https://helm.sh/ko/docs/intro/install/
'kubernetes' 카테고리의 다른 글
[MetalLB]MetalLB 설치 (2) | 2023.11.01 |
---|---|
[Kubernetes]validate service connection: CRI v1 image API is not implemented for endpoint (0) | 2023.10.23 |