"리눅스 helm 3 설치"의 두 판 사이의 차이

 
(같은 사용자의 중간 판 7개는 보이지 않습니다)
2번째 줄: 2번째 줄:
;리눅스 helm 3 설치
;리눅스 helm 3 설치


<syntaxhighlight lang='console'>
==최신 버전 설치==
testuser@localhost:~$ curl -s https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3 | bash
<syntaxhighlight lang='bash'>
Downloading https://get.helm.sh/helm-v3.3.4-linux-amd64.tar.gz
curl https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | bash
Verifying checksum... Done.
Preparing to install helm into /usr/local/bin
helm installed into /usr/local/bin/helm
</syntaxhighlight>
</syntaxhighlight>
<syntaxhighlight lang='console'>
또는
testuser@localhost:~$ helm version
<syntaxhighlight lang='bash'>
version.BuildInfo{Version:"v3.3.4", GitCommit:"a61ce5633af99708171414353ed49547cf05013d", GitTreeState:"clean", GoVersion:"go1.14.9"}
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
</syntaxhighlight>
 
==특정 버전 설치==
<syntaxhighlight lang='bash'>
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/
</syntaxhighlight>
</syntaxhighlight>


==같이 보기==
==같이 보기==
* [[helm]]
* [[리눅스 helm 2 설치]]
* [[리눅스 helm 2 설치]]
* [[리눅스 kubectl 설치]]


==참고==
==참고==

2024년 4월 26일 (금) 18:19 기준 최신판

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 }}