٩(๑•̀o•́๑)و

13. Helm 본문

Container Infrastructure/Side Project_202108

13. Helm

11mia 2021. 8. 29. 03:04

※ 간단 개념 정리

 □ Helm : 쿠버네티스에 패키지를 쉽게 배포할 수 있도록 패키지를 관리하는 쿠버네티스 전용 패키지 매니저. 기본 저장소는 아티팩트허브(https://artifacthub.io)

 

Artifact Hub

Find, install and publish Kubernetes packages

artifacthub.io

 

 

1. 설치

# 방법1
curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3
chmod 700 get_helm.sh
./get_helm.sh

# 방법2
curl https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3 | bash

# 어디까지 했나

# 참고

https://helm.sh/ko/

 

헬름

헬름 - 쿠버네티스 패키지 매니저

helm.sh

https://helm.sh/ko/docs/

 

문서 홈

문서 구성에 관해 알아야 할 모든 것

helm.sh

 

'Container Infrastructure > Side Project_202108' 카테고리의 다른 글

15. Jenkins  (0) 2021.08.30
14. NFS 설치  (0) 2021.08.29
12. Docker Container  (0) 2021.08.28
11. kubernetes dashboard 생성  (0) 2021.08.28
10. HPA(Horizontal Pod Autoscaler)  (0) 2021.08.28