Files
homelab-v/k8s/infra/network/dns/unbound/kustomization.yaml
T
Vegard Hagen 9fa04832e4 fix(unbound): use default config
Experiencing some issues with using Unbound as a recursive solver, so reverting to default config

Signed-off-by: Vegard Hagen <[email protected]>
2025-07-11 19:47:37 +02:00

25 lines
591 B
YAML

apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
configMapGenerator:
- name: unbound-config
namespace: dns
files:
- config/unbound.conf
- config/unbound.conf.example
- config/unbound.conf.default
- config/unbound.conf.recursive
- name: unbound-a-records
namespace: dns
files: [ config/a-records.conf ]
- name: unbound-forward-records
namespace: dns
files: [ config/forward-records.conf ]
- name: unbound-srv-records
namespace: dns
files: [ config/srv-records.conf ]
resources:
- svc.yaml
- deployment.yaml