From 7125a8c1d515e29d6ce75bb332496ae13268cbf2 Mon Sep 17 00:00:00 2001 From: Sheogorath <sheogorath@shivering-isles.com> Date: Mon, 20 Nov 2023 04:13:50 +0100 Subject: [PATCH] fix(dns): Fix DNSSEC validation After some investigation it seems that prefetch causes some issues with DNSSEC it seems to drop the ad flag on a refresh. Therefore it's disabled for now. --- apps/k8s01/dns/dns.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/k8s01/dns/dns.yaml b/apps/k8s01/dns/dns.yaml index df7cdf510..6fd342423 100644 --- a/apps/k8s01/dns/dns.yaml +++ b/apps/k8s01/dns/dns.yaml @@ -24,7 +24,7 @@ data: caching: minTime: 5m maxItemsCount: 262144 - prefetching: true + prefetching: false prefetchMaxItemsCount: 131072 prometheus: enable: true -- GitLab