From cdf28946dbb8fbac1f371af3eb2974ed50351382 Mon Sep 17 00:00:00 2001 From: Marco van Zijl Date: Mon, 10 Nov 2025 20:06:54 +0100 Subject: [PATCH] Update syncPolicy in application.yaml to enable pruning and self-healing --- apps/traefik/application.yaml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/apps/traefik/application.yaml b/apps/traefik/application.yaml index bd9d14a..09f9cb6 100644 --- a/apps/traefik/application.yaml +++ b/apps/traefik/application.yaml @@ -22,10 +22,15 @@ spec: namespace: traefik syncPolicy: automated: - prune: false - selfHeal: false + prune: true + selfHeal: true syncOptions: - CreateNamespace=true - PruneLast=true - PrunePropagationPolicy=foreground - - Replace=true \ No newline at end of file + retry: + limit: 5 + backoff: + duration: 5s + factor: 2 + maxDuration: 3m \ No newline at end of file