This repository has been archived on 2026-09-03. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
haven-ops/README.md
T
2026-08-29 16:22:19 -03:00

653 B

Haven

2. Repo layout (gitops/)

gitops/
├── bootstrap/
│   ├── namespaces.yaml        # cluster namespaces
│   ├── argocd-install/        # Argo CD install manifests + ingress
│   └── root-app.yaml          # root Application watching apps/root
├── apps/
│   ├── root/
│   │   ├── kustomization.yaml # points to applicationset.yaml
│   │   └── applicationset.yaml# auto-discovers apps/*/*.yaml
│   └── <namespace>/           # e.g., default/, media/, monitoring/
│       ├── <app-1>.yaml       # all-in-one manifest per app
│       └── <app-2>.yaml