리눅스 helm 3 설치

1 개요

리눅스 helm 3 설치

2 최신 버전 설치

curl https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | bash

또는

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 특정 버전 설치

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 참고

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}