init: 폴더구조 설계 및 인프라 설계

This commit is contained in:
DongHyeonka
2026-07-24 14:31:53 +09:00
parent 34ad612281
commit f9c463f87a
1839 changed files with 323096 additions and 1 deletions
+26
View File
@@ -0,0 +1,26 @@
# k8s AGENTS
Role:
- own Kubernetes/K3s source-of-truth manifests and Kustomize composition
- keep base resources, environment overlays, helper scripts, and Vault Secrets Operator assets separate
- make render / validate / diff / apply possible from Git without relying on live cluster state
Scope:
- `base/`: environment-neutral bases
- `overlays/<env>/`: environment-specific composition
- `scripts/`: helper automation
- `vso/`: Vault Secrets Operator assets
Read first:
- `/docs/standards/infra/architecture-environments.md`
- `/docs/standards/infra/kustomize.md`
- `/docs/standards/infra/k3s-specific.md`
- `/docs/standards/infra/operations-runbook-upgrade-rollback.md`
Rules:
- prefer `kubectl kustomize`, `kubectl diff -k`, and `kubectl apply -k`
- do not use server-local manifests as source of truth
- do not place environment differences in `base/`
- do not place base resource definitions directly in overlays unless the resource is environment-only by design
- do not commit production secret values
- keep scripts as helpers; manifests remain declarative source