21 lines
523 B
Markdown
21 lines
523 B
Markdown
# Minimal Example
|
|
|
|
단일 환경·단일 클러스터가 같은 경계를 어떻게 사용하는지 보여 주는 예입니다.
|
|
|
|
```text
|
|
minimal/
|
|
├── infrastructure/
|
|
│ └── live/dev/cluster/README.md
|
|
└── gitops/
|
|
├── platform/core/base/
|
|
├── apps/hello-config/base/
|
|
└── clusters/dev/main/
|
|
```
|
|
|
|
실제 cloud 리소스를 만들지 않으며, GitOps 예제는 Namespace와 ConfigMap만
|
|
렌더합니다.
|
|
|
|
```bash
|
|
kubectl kustomize examples/minimal/gitops/clusters/dev/main
|
|
```
|