Add BUILD-README.md
This commit is contained in:
@@ -0,0 +1,76 @@
|
||||
# harbor 버전 갱신 가이드
|
||||
|
||||
## 1. git 작업 환경 구성
|
||||
|
||||
- DIP 카탈로그 git 다운로드
|
||||
```
|
||||
$ git clone https://github.com/paasup/dip-catalog.git
|
||||
```
|
||||
|
||||
- 작업 브랜치로 체크아웃
|
||||
```
|
||||
$ git checkout -b update-harbor/1.16.2
|
||||
```
|
||||
|
||||
## 2. helm 차트 버전 업데이트
|
||||
|
||||
- BUILD-README.md, CUSTOM-README.md, custom-values.yaml을 제외한 파일 삭제
|
||||
``` sh
|
||||
# chart 디렉토리로 이동
|
||||
cd ~/dip-catalog/charts/harbor
|
||||
|
||||
# 파일 삭제 전 삭제할 파일 목록 확인
|
||||
find . -mindepth 1 \( -name "CUSTOM-README.md" -o -name "BUILD-README.md" -o -name "custom-values.yaml" \) -prune -o -print
|
||||
|
||||
# 파일 삭제
|
||||
find . -mindepth 1 \(-name "CUSTOM-README.md" -o -name "BUILD-README.md" -o -name "custom-values.yaml" \) -prune -o -exec rm -rf {} +
|
||||
```
|
||||
|
||||
- harbor 차트 다운로드
|
||||
``` sh
|
||||
# charts 디렉토리로 이동
|
||||
cd ~/dip-catalog/charts
|
||||
|
||||
# helm repo 추가
|
||||
helm repo add helm https://helm.goharbor.io
|
||||
helm repo update
|
||||
|
||||
# helm 차트
|
||||
helm pull harbor/harbor --version="1.16.2"
|
||||
|
||||
# 차트 변경
|
||||
tar xzvf harbor-*.tgz
|
||||
|
||||
# 필요 없는 파일 삭제
|
||||
rm harbor-*.tgz
|
||||
```
|
||||
|
||||
## 3. git push 및 tag 추가
|
||||
- 갱신작업 진행후 commit
|
||||
```sh
|
||||
$ git add .
|
||||
$ git commit -m "update harbor/1.16.2"
|
||||
```
|
||||
|
||||
- main 브랜치에 체크아웃 후 merge
|
||||
```sh
|
||||
$ git checkout main
|
||||
$ git merge update-harbor/1.16.2
|
||||
```
|
||||
|
||||
- git에 push 후 작업 브랜치 삭제
|
||||
```sh
|
||||
$ git push -u origin main
|
||||
$ git branch -d update-harbor/1.16.2
|
||||
```
|
||||
|
||||
- git tag 추가 후 push
|
||||
```sh
|
||||
$ git tag harbor/1.16.2
|
||||
$ git push origin harbor/1.16.2
|
||||
```
|
||||
|
||||
## 4. 차트 버전 정보
|
||||
- harbor/1.16.2
|
||||
- 서비스 배포를 위하여 custom-values.yam에 정의하였다.
|
||||
- 차트의 빌드 방법과 배포 방법을 BUILD-README.md, CUSTOM-README.md 문서에 작성하였다.
|
||||
Reference in New Issue
Block a user