YJWANG

Nexus3로 Helm local repo 구축하기 본문

60.Cloud/80.Kubernetes

Nexus3로 Helm local repo 구축하기

왕영주 2021. 2. 15. 09:51

Nexus3로 Helm Repo 만들기


repo 추가

Web Interface를 통해 진행한다. 아래 버전 cli에서는 helm repo를 생성할 수 없다.

# pip3 list --format=legacy |grep nexus3-cli
nexus3-cli (4.1.0)

Helm repo 생성

Create Repositories > helm(hosted) > Copy URL

Helm repository 추가

# helm repo add local-repo http://1.2.3.4:1234/repository/test-helm --username user --password password
"local-repo" has been added to your repositories

# helm repo list
NAME            URL
bitnami         https://charts.bitnami.com/bitnami
local-repo      http://1.2.3.4:1234/repository/test-helm
반응형