- Replace all forgejo.riotpiao.com repo URLs with [email protected] SSH URLs - Enables immediate GitOps sync without waiting for Forgejo mirror setup - Includes ingress-nginx now fully ArgoCD-managed (wave 0) - SOPS secrets can now sync and decrypt TLS certificates
29 lines
822 B
YAML
29 lines
822 B
YAML
# Phase 1 entry point — the app-of-apps root.
|
|
# Apply once (kubectl apply -k k8s/argocd/root) then sync it; it renders every
|
|
# Application manifest under k8s/argocd/apps/ and those deploy the whole cluster
|
|
# in sync-wave order. Requires Forgejo to be serving the repo (Phase 0 first).
|
|
apiVersion: argoproj.io/v1alpha1
|
|
kind: Application
|
|
metadata:
|
|
name: homelab-root
|
|
namespace: argocd
|
|
annotations:
|
|
argocd.argoproj.io/sync-wave: "0"
|
|
spec:
|
|
project: homelab
|
|
source:
|
|
repoURL: [email protected]:Riotpiaole/riotpiao.homelab.com.git
|
|
targetRevision: main
|
|
path: k8s/argocd/apps
|
|
directory:
|
|
recurse: false
|
|
destination:
|
|
server: https://kubernetes.default.svc
|
|
namespace: argocd
|
|
syncPolicy:
|
|
automated:
|
|
prune: true
|
|
selfHeal: true
|
|
syncOptions:
|
|
- CreateNamespace=true
|