1 개요[ | ]
- 리눅스 helm 3 설치
2 최신 버전 설치[ | ]
Bash
Copy
curl https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | bash
또는
Bash
Copy
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
3 특정 버전 설치[ | ]
Bash
Copy
VERSION=v3.12.1
curl -LO https://get.helm.sh/helm-$VERSION-linux-amd64.tar.gz
tar xzvf helm-$VERSION-linux-amd64.tar.gz
mv linux-amd64/helm /usr/local/bin/
4 같이 보기[ | ]
5 참고[ | ]
편집자 Jmnote
로그인하시면 댓글을 쓸 수 있습니다.