Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix. repository name #7

Merged
merged 1 commit into from
Aug 20, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/getting-started/customize-yaml.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ Decapod-site를 배포할 환경에 맞게 수정하여 Argo CD가 사용할 dec
* [decapod-site](https://github.com/openinfradev/decapod-site)를 자신의 repo로 fork한다.
* [Fork 방법](https://docs.github.com/en/get-started/quickstart/fork-a-repo)
* 렌더링된 [decapod-manifests](https://github.com/openinfradev/decapod-manifests)를 저장할 repository를 생성한다.
* 예: github.com/<YOUR_REPOSITORY_NAME\>/decapod-manifest.git
* 예: github.com/{YOUR_REPO_NAME}/decapod-manifest.git

## 신규 사이트 생성

$ git clone https://github.com/<YOUR_REPOSITORY_NAME>/decapod-site.git
$ git clone https://github.com/{YOUR_REPO_NAME}/decapod-site.git
$ cd decapod-site
$ ./create_site.sh <SITE_NAME>
Cloning into '.base-yaml'...
Expand Down
6 changes: 3 additions & 3 deletions docs/getting-started/deploying.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@ argo template create decapod-apps/service-mesh-wf.yaml
2. lma 배포
```sh
argo submit -n argo --from wftmpl/lma-federation \
-p site_name="YOUR_REPOSITORY_NAME" # decapod-manifests의 사이트 디렉토리명과 반드시 일치해야한다. \
-p site_name="사이트명" # decapod-manifests의 사이트 디렉토리명과 반드시 일치해야한다. \
-p app_name="lma" \
-p repository_url="https://github.com/openinfradev/decapod-manifests" # decapod-manifests repository 주소
-p repository_url="https://github.com/{YOUR_REPO_NAME}/decapod-manifests" # decapod-manifests repository 주소

argo list -n argo # 생성된 workflow가 완료될 때까지 기다린다.
```
Expand All @@ -61,4 +61,4 @@ argo template create decapod-apps/service-mesh-wf.yaml
kubectl get pod -n lma
```