Compare commits

..

2 Commits

Author SHA1 Message Date
unkinben fda91c773d Pin binddns-resolver service to a dedicated IP
ci/woodpecker/pr/pre-commit Pipeline was successful
ci/woodpecker/pr/kubeconform Pipeline was successful
DNS (UDP/53) can't route via a shared gateway yet (no UDPRoute), so the
service needs its own LoadBalancer address instead of a pool-assigned one.

- pin purelb.io/addresses 198.18.200.7 (common pool)
2026-07-03 20:29:19 +10:00
unkinben 475df18244 Deploy binddns-resolver BIND cluster
Adds the recursive resolvers (3 identical recursive servers with forwarders). Stacked on the bind-operator deploy so the
CRDs and kubeconform schemas are present; merge the operator PR first.

- add apps/base/binddns-resolver and its au-syd1 overlay
2026-07-03 20:29:19 +10:00
4 changed files with 4 additions and 4 deletions
@@ -5,7 +5,7 @@ apiVersion: bind.unkin.net/v1alpha1
kind: BindCluster
metadata:
name: resolver
namespace: ns-resolver
namespace: binddns-resolver
spec:
mode: resolver
replicas: 3
@@ -16,7 +16,7 @@ spec:
annotations:
purelb.io/service-group: common
purelb.io/addresses: 198.18.200.7
external-dns.alpha.kubernetes.io/hostname: ns-resolver.k8s.syd1.au.unkin.net
external-dns.alpha.kubernetes.io/hostname: resolver.k8s.syd1.au.unkin.net
forwarders:
- 1.1.1.1
- 9.9.9.9
@@ -2,4 +2,4 @@
apiVersion: v1
kind: Namespace
metadata:
name: ns-resolver
name: binddns-resolver
@@ -3,4 +3,4 @@ apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- ../../../base/ns-resolver
- ../../../base/binddns-resolver