Update syncPolicy in application.yaml to enable pruning and self-healing

This commit is contained in:
Marco van Zijl 2025-11-10 20:06:54 +01:00
parent 3b6527c3fb
commit cdf28946db

View File

@ -22,10 +22,15 @@ spec:
namespace: traefik namespace: traefik
syncPolicy: syncPolicy:
automated: automated:
prune: false prune: true
selfHeal: false selfHeal: true
syncOptions: syncOptions:
- CreateNamespace=true - CreateNamespace=true
- PruneLast=true - PruneLast=true
- PrunePropagationPolicy=foreground - PrunePropagationPolicy=foreground
- Replace=true retry:
limit: 5
backoff:
duration: 5s
factor: 2
maxDuration: 3m