prod-readiness: alpine runtime + uid:gid passthrough + git auto-commit working
The final set of fixes to make the rfc2136 plugin truly operational
in production:
- coredns/Dockerfile: switch runtime stage from gcr.io/distroless to
alpine:3.20. Distroless has no package manager and no shell, so
`git commit` (called by the plugin's auto-commit code path) had no
way to execute. Alpine adds ~10 MB image size but gives us git +
a usable shell for debugging.
- docker-compose.yml: `user: "${COREDNS_UID:-1003}:${COREDNS_GID:-1004}"`.
The container runs as the host's rpm user (uid 1003/gid 1004 on
dell01) so zone files the plugin writes are owned by rpm:rpm on
the host -- not root. Without this the plugin would write
root-owned files we couldn't read or git-edit. Defaults match
dell01; override per-host via env if needed.
- .env.example: documents COREDNS_IMAGE_TAG (CalVer; bump per build).
Add COREDNS_UID/GID if you need to override on a host where rpm
has different numeric ids.
Combined with the bumped image tag (2026.05.21.2), the full
end-to-end flow works: caddy/nsupdate -> TSIG verify -> plugin
handler -> atomic file write -> git auto-commit -> auto plugin
reload -> query returns new record.
This commit is contained in:
parent
162abedfdd
commit
18aa53bdc7
3 changed files with 24 additions and 3 deletions
|
|
@ -53,6 +53,13 @@ services:
|
|||
image: coredns-rfc2136:${COREDNS_IMAGE_TAG}
|
||||
container_name: coredns
|
||||
restart: unless-stopped
|
||||
# Run as host's primary user so files the rfc2136 plugin writes to
|
||||
# /zones land owned by rpm:rpm on the host. Without this they'd
|
||||
# be root-owned, making manual edits / git ops painful.
|
||||
#
|
||||
# UID/GID come from env (defaulted to dell01's rpm: 1003:1004).
|
||||
# Override in .env for hosts where rpm has different ids.
|
||||
user: "${COREDNS_UID:-1003}:${COREDNS_GID:-1004}"
|
||||
command: ["-conf", "/etc/coredns/Corefile"]
|
||||
# The Corefile uses {$ACME_TSIG_SECRET} expansion to read the
|
||||
# TSIG secret. Passed in from compose's env (which auto-reads .env).
|
||||
|
|
@ -70,7 +77,9 @@ services:
|
|||
- "${HEALTH_PORT}:8080/tcp"
|
||||
volumes:
|
||||
- ./Corefile:/etc/coredns/Corefile:ro
|
||||
- ./zones:/zones:ro
|
||||
# Read-write because the rfc2136 plugin writes zone files in-place
|
||||
# after each accepted UPDATE message (atomic temp-file + rename).
|
||||
- ./zones:/zones
|
||||
# Subpath mount of Caddy's data dir. The healthcheck maintains
|
||||
# cert.pem / key.pem symlinks at the top of this tree, so CoreDNS
|
||||
# sees stable filenames regardless of hostname. The /accounts dir
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue