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 repo: https://kubernetes-sigs.github.io/external-dns
values: values:
fullnameOverride: external-dns-unifi fullnameOverride: external-dns-unifi
logLevel: &logLevel debug
# Konfiguration des Webhook-Providers (der "Übersetzer" für UniFi) # Konfiguration des Webhook-Providers (der "Übersetzer" für UniFi)
provider: provider:
name: webhook name: webhook
@@ -35,10 +35,14 @@ helm:
httpGet: httpGet:
path: /healthz path: /healthz
port: http-webhook port: http-webhook
initialDelaySeconds: 10
timeoutSeconds: 5
readinessProbe: readinessProbe:
httpGet: httpGet:
path: /readyz path: /readyz
port: http-webhook port: http-webhook
initialDelaySeconds: 10
timeoutSeconds: 5
# Allgemeine External-DNS Einstellungen # Allgemeine External-DNS Einstellungen
policy: sync # "sync" löscht auch Einträge, die nicht mehr in K8s sind. "upsert-only" ist sicherer. policy: sync # "sync" löscht auch Einträge, die nicht mehr in K8s sind. "upsert-only" ist sicherer.