31 lines
830 B
Markdown
31 lines
830 B
Markdown
# Cluster Entrypoints
|
|
|
|
클러스터별 최종 desired state 진입점입니다. GitOps controller의 root는 이
|
|
디렉터리 아래 **하나의 실제 cluster leaf**만 가리킵니다.
|
|
|
|
소규모:
|
|
|
|
```text
|
|
clusters/
|
|
└── dev/
|
|
└── main/
|
|
└── kustomization.yaml
|
|
```
|
|
|
|
다중 환경·리전:
|
|
|
|
```text
|
|
clusters/
|
|
├── dev/ap-northeast-2/dev-a/
|
|
├── staging/ap-northeast-2/staging-a/
|
|
└── prod/
|
|
├── ap-northeast-2/prod-a/
|
|
└── ap-southeast-1/prod-b/
|
|
```
|
|
|
|
cluster leaf에는 catalog 구현을 복사하지 않고 선택 목록과 cluster 고유 patch만
|
|
둡니다. 계정 또는 조직 경계가 필요하면 경로 segment를 추가할 수 있지만 자동화가
|
|
고정 depth에 의존하지 않도록 합니다.
|
|
|
|
`_template`을 실제 경로로 복사해 시작합니다.
|