Repository for dip
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

36 lines
743 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
```