From b9814b70b6125140d0c11a0d81b1273bfb9bb429 Mon Sep 17 00:00:00 2001 From: j Date: Tue, 1 Jul 2025 11:19:09 +1000 Subject: [PATCH] Mount bind cache as empty dir --- deployments/dns/bind.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/deployments/dns/bind.yaml b/deployments/dns/bind.yaml index ea3b45a..582ad26 100644 --- a/deployments/dns/bind.yaml +++ b/deployments/dns/bind.yaml @@ -118,6 +118,8 @@ spec: - name: dns-secrets mountPath: /etc/bind/externaldns-key.conf subPath: externaldns-key.conf + - name: bind-cache + mountPath: /var/cache/bind volumes: - name: dns-secrets secret: @@ -125,6 +127,8 @@ spec: - name: config configMap: name: bind-master-config + - name: bind-cache + emptyDir: {} --- apiVersion: apps/v1 kind: DaemonSet