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.
 
 
 
 
 
 

51 lines
1.3 KiB

# Unity Catalog 버전 갱신 가이드
## 1. git 작업 환경 구성
- 서비스 카탈로그 git 다운로드
```
$ git clone https://github.com/paasup/dip-catalog.git
```
- 작업 브랜치로 체크아웃
```
$ git checkout -b update-unitycatalog/0.2.0
```
## 2. helm 차트 버전 업데이트
- 본 chart는 [ray-harrison/unitycatalog](https://github.com/ray-harrison/unitycatalog)를 바탕으로 직접 제작했다.
- chart 관리는 [paasup/unitycatalog](https://github.com/paasup/unitycatalog/tree/main/helm/chart)에서 관리하고 있다.
## 3. git push 및 tag 추가
- 갱신작업 진행후 commit
```sh
$ git add .
$ git commit -m "update unitycatalog/0.2.0"
```
- main 브랜치에 체크아웃 후 merge
```sh
$ git checkout main
$ git merge update-unitycatalog/0.2.0
```
- git에 push 후 작업 브랜치 삭제
```sh
$ git push -u origin main
$ git branch -d update-unitycatalog/0.2.0
```
- git tag 추가 후 push
```sh
$ git tag unitycatalog/0.2.0
$ git push origin unitycatalog/0.2.0
```
## 4. 차트 버전 정보
- unitycatalog/0.2.0
- 배포를 위한 설정을 추가하였다.(ingress, private ca 적용 등)
- 서비스 배포를 위하여 custom-values.yam에 정의하였다.
- 차트의 빌드 방법과 배포 방법을 BUILD-README.md, CUSTOM-README.md 문서에 작성하였다.