- 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
44 lines
1.1 KiB
YAML
44 lines
1.1 KiB
YAML
# Wave 0 — networking policies layered on the Cilium CNI + CoreDNS that the
|
|
# cluster bootstrap already installed (substrate). These are raw manifests only.
|
|
apiVersion: argoproj.io/v1alpha1
|
|
kind: Application
|
|
metadata:
|
|
name: cilium-policy
|
|
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/bootstrap/cilium
|
|
destination:
|
|
server: https://kubernetes.default.svc
|
|
namespace: kube-system
|
|
syncPolicy:
|
|
automated:
|
|
prune: true
|
|
selfHeal: true
|
|
---
|
|
apiVersion: argoproj.io/v1alpha1
|
|
kind: Application
|
|
metadata:
|
|
name: coredns-config
|
|
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/bootstrap/coredns
|
|
destination:
|
|
server: https://kubernetes.default.svc
|
|
namespace: kube-system
|
|
syncPolicy:
|
|
automated:
|
|
prune: true
|
|
selfHeal: true
|