Update app-of-apps and all ArgoCD applications to point at this feature branch for testing. Will change back to main before merging. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
25 lines
773 B
YAML
25 lines
773 B
YAML
# App-of-apps root Application
|
|
# Watches argocd/apps/ and creates/manages all Application resources
|
|
apiVersion: argoproj.io/v1alpha1
|
|
kind: Application
|
|
metadata:
|
|
name: apps
|
|
namespace: argocd
|
|
spec:
|
|
project: default
|
|
source:
|
|
# TODO: Change back to 'main' before merging PR
|
|
repoURL: ssh://forgejo@indri.tail8d86e.ts.net:2200/eblume/blumeops.git
|
|
targetRevision: feature/k8s-phase2-grafana
|
|
path: argocd/apps
|
|
destination:
|
|
server: https://kubernetes.default.svc
|
|
namespace: argocd
|
|
syncPolicy:
|
|
automated:
|
|
prune: true
|
|
selfHeal: true
|
|
syncOptions:
|
|
- CreateNamespace=true
|
|
# Auto-sync enabled: new/changed Application manifests appear automatically
|
|
# but child apps still require manual sync (they have manual sync policy)
|