Fix validate-except syntax: semicolon after last list entry
ci/woodpecker/pr/pre-commit Pipeline was successful
ci/woodpecker/pr/kubeconform Pipeline was successful

The resolver validate-except list (#251) omitted the trailing semicolon
after the final entry, so named fails config parse
(named.conf: missing ';' before '}') and the resolver pods crash-loop.
BIND requires every entry in the list to be semicolon-terminated,
including the last one before the closing brace.
This commit is contained in:
2026-07-12 22:24:53 +10:00
parent 5e7dc580b7
commit 32c97c94c7
@@ -29,7 +29,7 @@ spec:
# insecure so they are not validated. unkin.net covers all *.unkin.net # insecure so they are not validated. unkin.net covers all *.unkin.net
# (incl. k8s.syd1.au.unkin.net); 18.198.in-addr.arpa covers every reverse zone. # (incl. k8s.syd1.au.unkin.net); 18.198.in-addr.arpa covers every reverse zone.
extraOptions: extraOptions:
- "validate-except { unkin.net; 18.198.in-addr.arpa; consul }" - "validate-except { unkin.net; 18.198.in-addr.arpa; consul; }"
resources: resources:
requests: requests:
cpu: 20m cpu: 20m