- install argocd at home/cluster/argocd/, app-of-apps via root-app.yaml - 4 child Applications: aprs, gridmap, prop, towerops - argo.w5isp.com via cloudflared tunnel (CNAME + ingress_rule in tofu) - update CLAUDE.md: drop K3s/Wavelog/n8n/Node-RED, document GitOps + ArgoCD
19 lines
434 B
YAML
19 lines
434 B
YAML
apiVersion: argoproj.io/v1alpha1
|
|
kind: Application
|
|
metadata:
|
|
name: towerops
|
|
namespace: argocd
|
|
finalizers:
|
|
- resources-finalizer.argocd.argoproj.io
|
|
spec:
|
|
project: default
|
|
source:
|
|
repoURL: https://git.mcintire.me/graham/towerops-web.git
|
|
targetRevision: main
|
|
path: k8s
|
|
destination:
|
|
server: https://kubernetes.default.svc
|
|
namespace: towerops
|
|
syncPolicy:
|
|
syncOptions:
|
|
- CreateNamespace=true
|