Files
service-catalog/charts/argo-cd/BUILD-README.md
T
2024-11-11 15:54:17 +09:00

733 B

ArgoCD 버전 갱신 가이드

ArgoCD Helm Chart의 버전의 갱신할 경우 작업은 항상 main에서 이루어져야 한다.

  • 서비스 카탈로그 git 다운로드
$ git clone https://github.com/paasup/service-catalog.git
  • 작업 브랜치로 체크아웃
$ git checkout -b update-argocd/7.8.0
  • 갱신작업 진행후 commit
$ git add .
$ git commit -m "update argocd/7.8.0 {TAG_NAME}"
  • main 브랜치에 체크아웃 후 merge
$ git checkout main
$ git merge update-argocd/7.8.0
  • git에 push 후 작업 브랜치 삭제
$ git push -u origin main
$ git branch -d update-argocd/7.8.0
  • git tag 추가 후 push
$ git tag argocd/7.8.0
$ git push origin argocd/7.8.0