Fix resources isues 2

This commit is contained in:
2026-01-22 10:07:05 +01:00
parent 8dc422e0e5
commit 89ec45a7c1
4 changed files with 12 additions and 18 deletions

View File

@@ -55,12 +55,13 @@ podAnnotations:
# topologyKey: "kubernetes.io/hostname"
# Production probe settings (more conservative)
# NOTE: mvance/unbound image does NOT have 'nc' (netcat), use 'drill' instead
probes:
readiness:
initialDelaySeconds: 10
periodSeconds: 30
command: "sh -c 'echo \"\" | nc -w 3 127.0.0.1 53 || exit 1'"
command: "drill @127.0.0.1 localhost || exit 1"
liveness:
initialDelaySeconds: 30
periodSeconds: 60
command: "sh -c 'echo \"\" | nc -w 3 127.0.0.1 53 || exit 1'"
command: "drill @127.0.0.1 localhost || exit 1"