Compare commits

..

2 Commits

Author SHA1 Message Date
unkinben 6e3243abd8 Pin binddns-auth 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.6 (common pool)
2026-07-03 20:25:13 +10:00
unkinben c12c5f8b72 Deploy binddns-auth BIND cluster
Adds the authoritative masters (pod-0 primary + 2 secondaries via catalog/AXFR); includes the catalog zone and transfer TSIG key. Stacked on the bind-operator deploy so the
CRDs and kubeconform schemas are present; merge the operator PR first.

- add apps/base/binddns-auth and its au-syd1 overlay
2026-07-03 20:25:13 +10:00
5 changed files with 5 additions and 5 deletions
@@ -5,7 +5,7 @@ apiVersion: bind.unkin.net/v1alpha1
kind: BindCluster
metadata:
name: auth
namespace: ns-auth
namespace: binddns-auth
spec:
mode: authoritative
replicas: 3
@@ -30,7 +30,7 @@ apiVersion: bind.unkin.net/v1alpha1
kind: BindCatalogZone
metadata:
name: auth-catalog
namespace: ns-auth
namespace: binddns-auth
spec:
clusterRef: auth
zoneName: catalog.internal
@@ -2,4 +2,4 @@
apiVersion: v1
kind: Namespace
metadata:
name: ns-auth
name: binddns-auth
@@ -5,6 +5,6 @@ apiVersion: bind.unkin.net/v1alpha1
kind: BindTSIGKey
metadata:
name: transfer-key
namespace: ns-auth
namespace: binddns-auth
spec:
algorithm: hmac-sha256
@@ -3,4 +3,4 @@ apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- ../../../base/ns-auth
- ../../../base/binddns-auth