1 개요[ | ]
- helm chart 다운로드
- 헬름 차트 다운로드
- helm pull
최신버전 받기
Bash
Copy
helm repo add [REPO명] [REPO URL]
helm pull [REPO명/차트명]
특정버전 받기
Bash
Copy
helm repo add [REPO명] [REPO URL]
helm pull [REPO명/차트명] --version [버전]
2 실행 예시[ | ]
Console
Copy
$ helm repo add ingress-nginx https://kubernetes.github.io/ingress-nginx
"ingress-nginx" has been added to your repositories
Console
Copy
$ helm pull ingress-nginx/ingress-nginx
$ ls *.tgz
ingress-nginx-4.7.2.tgz
Console
Copy
$ helm pull ingress-nginx/ingress-nginx --version 4.6.0
$ ls *.tgz
ingress-nginx-4.6.0.tgz ingress-nginx-4.7.2.tgz
3 같이 보기[ | ]
편집자 Jmnote
로그인하시면 댓글을 쓸 수 있습니다.