https://github.com/greggschofield/app-of-apps
Sandbox for bootstrapping a Kubernetes cluster using the ArgoCD app-of-apps pattern and GitOps
https://github.com/greggschofield/app-of-apps
Last synced: 3 months ago
JSON representation
Sandbox for bootstrapping a Kubernetes cluster using the ArgoCD app-of-apps pattern and GitOps
- Host: GitHub
- URL: https://github.com/greggschofield/app-of-apps
- Owner: GreggSchofield
- License: mit
- Created: 2023-12-18T22:46:43.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-12-18T23:21:54.000Z (over 1 year ago)
- Last Synced: 2025-01-15T11:48:20.052Z (5 months ago)
- Language: Mustache
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# app-of-apps
Sandbox for bootstrapping a Kubernetes cluster using the ArgoCD app-of-apps pattern and GitOpsCreate and sync the parent app (app of apps) via the `argocd` cli:
```shell
argocd app create app-of-apps \
--dest-namespace argocd \
--dest-server https://kubernetes.default.svc \
--repo https://github.com/GreggSchofield/app-of-apps.git \
--path apps
```Sync the patent app to its target state via a label selector:
```shell
argocd app sync -l app.kubernetes.io/instance=app-of-apps
```