-
Harbor 설치 (Helm)Kubernetes 2025. 3. 21. 18:34
https://artifacthub.io/packages/helm/harbor/harbor
harbor 1.16.2 · harbor/harbor
An open source trusted cloud native registry that stores, signs, and scans content
artifacthub.io
- 저장소 추가
helm repo add bitnami https://charts.bitnami.com/bitnami helm repo update
- Helm Chart 다운로드
helm pull bitnami/harbor
- Helm Chart 압축 해제 및 이동
tar xvf harbor-22.0.12.tgz cd harbor
- values 구성 (Ingress 사용 예)
vi values.yaml adminPassword: "1234" externalURL: https://harbor.hyun.com exposureType: Ingress ingress: core: ingressClassName: "nginx" hostname: harbor.hyun.com annotations: ingress.kubernetes.io/ssl-redirect: "true" ingress.kubernetes.io/proxy-body-size: "0" nginx.ingress.kubernetes.io/ssl-redirect: "true" nginx.ingress.kubernetes.io/proxy-body-size: "0"
- values 구성 (NodePort 사용 예)
vi values.yaml adminPassword: "1234" externalURL: https://harbor.hyun.com:32078 service: type: NodePort nodePorts: http: "32077" https: "32078"
- Harbor 설치
helm install harbor harbor -n harbor --create-namespace
- 접속 확인
- https://IP:NodePort
- https://Doamin
'Kubernetes' 카테고리의 다른 글
ArgoCD 설치 (Helm) (0) 2025.03.23 MetalLB 설치하기 (0) 2025.03.22 [K8S] kubespray inventory_builder 제거 (0) 2025.03.21 [K8S][폐쇄망]Kubespray로 Kubernetes 설치하기 - Ubuntu (0) 2025.03.20 [K8S][폐쇄망]Kubespray로 Kubernetes 설치하기 - CentOS7/Rocky8 (0) 2025.03.20