autojanet/k8s/argocd-app.yaml
Zoë 6ad6558c42
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
fix: enable recursive directory sync in ArgoCD app
2026-05-30 15:54:29 -07:00

29 lines
594 B
YAML

apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: autojanet
namespace: argocd
spec:
project: default
source:
repoURL: https://git.ctz.fyi/zoe/autojanet.git
targetRevision: mainline
path: k8s
directory:
recurse: true
destination:
server: https://kubernetes.default.svc
namespace: autojanet
syncPolicy:
automated:
prune: true
selfHeal: true
syncOptions:
- CreateNamespace=true
- ServerSideApply=true
retry:
limit: 5
backoff:
duration: 30s
maxDuration: 5m
factor: 2