mirror of
https://github.com/jpetazzo/container.training.git
synced 2026-05-06 00:46:56 +00:00
14 lines
825 B
Plaintext
14 lines
825 B
Plaintext
├── charts/ <--- could also be in separate app repos
|
|
│ ├── dockercoins/
|
|
│ └── color/
|
|
├── apps/ <--- YAML manifests for GitOps resources
|
|
│ ├── dockercoins/ (might reference the "charts" above,
|
|
│ ├── blue/ and/or include environment-specific
|
|
│ ├── green/ manifests to create e.g. namespaces,
|
|
│ ├── kube-prometheus-stack/ configmaps, secrets...)
|
|
│ ├── cert-manager/
|
|
│ └── traefik/
|
|
└── clusters/ <--- per-cluster; will typically reference
|
|
├── prod/ the "apps" above, possibly extending
|
|
└── dev/ or adding configuration resources too
|