Compare commits

...

2 commits

Author SHA1 Message Date
j
d7c48e1058 Use alpine not stupid curl images 2025-07-01 12:23:55 +10:00
j
430ec99d49 Readd bind 2025-07-01 12:23:06 +10:00
2 changed files with 6 additions and 4 deletions

View file

@ -102,17 +102,18 @@ spec:
fsGroup: 999 # allow group access to volumes for named user
initContainers:
- name: fetch-root-hints
image: curlimages/curl:latest
image: alpine:latest
command:
- sh
- -c
- |
apk add --no-cache curl && \
curl -sfSL https://www.internic.net/domain/named.cache -o /usr/share/dns/root.hints
# hold container open for debug (optional)
# Uncomment below to hold the container open for debugging:
# tail -f /dev/null
volumeMounts:
- mountPath: /usr/share/dns
name: root-hints
- mountPath: /usr/share/dns
name: root-hints
containers:
- name: bind-master
image: internetsystemsconsortium/bind9:9.18

View file

@ -4,3 +4,4 @@ kind: Kustomization
resources:
- operators/prometheus.yaml
- operators/mariadb.yaml
- dns/bind.yaml