nexus_upload_helmpackage - choisungwook/portfolio GitHub Wiki

1. 개요

nexus private helm repo에 helm 패키지 업로드


2. 준비

helm 패키지


3. 업로드 과정

3.1 nexus 관리자 계정과 비밀번호를 환경변수로 설정

helm 패키지를 업로드 할 때 사용

nexus_user=admin
nexus_password=<your_password>

3.2 helm 패키지 업로드

  • -F: 업로드할 helm 패키지
  • -u: nexus 관리자 계정과 비밀번호
curl -F [email protected] \
-u $nexus_user:$nexus_password \
https://nexus.choilab.xyz/service/rest/v1/components?repository=custom-helm1


3.3 업로드 확인

업로드가 성공하면 helm repo search명령어로 업로드한 패지가 검색된다.

helm repo update
helm search repo nginxdemo

⚠️ **GitHub.com Fallback** ⚠️