feat: add debug logging and configure health probe timeouts for external-dns

This commit is contained in:
2026-05-04 22:29:46 +02:00
parent c6b90860b8
commit 753dffc022
+5 -1
View File
@@ -14,7 +14,7 @@ helm:
repo: https://kubernetes-sigs.github.io/external-dns
values:
fullnameOverride: external-dns-unifi
logLevel: &logLevel debug
# Konfiguration des Webhook-Providers (der "Übersetzer" für UniFi)
provider:
name: webhook
@@ -35,10 +35,14 @@ helm:
httpGet:
path: /healthz
port: http-webhook
initialDelaySeconds: 10
timeoutSeconds: 5
readinessProbe:
httpGet:
path: /readyz
port: http-webhook
initialDelaySeconds: 10
timeoutSeconds: 5
# Allgemeine External-DNS Einstellungen
policy: sync # "sync" löscht auch Einträge, die nicht mehr in K8s sind. "upsert-only" ist sicherer.