-
Notifications
You must be signed in to change notification settings - Fork 84
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Dockerfile, compose.yaml, and an unbound example config
This adds a Dockerfile for unbound exporter, which we can publish in the future. An example docker compose.yml is included to demonstrate and test using it with unbound, along with a sample configuration file for unbound showing how to set up the remote-control. The unbound example config file is based on the one inside the mvance/docker image that's used here.
- Loading branch information
1 parent
cbed007
commit 92c9ccd
Showing
3 changed files
with
121 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
FROM docker.io/library/golang:1.21.4-bookworm AS build | ||
|
||
WORKDIR /go/src/app | ||
|
||
COPY go.mod . | ||
COPY go.sum . | ||
|
||
RUN go mod download | ||
|
||
COPY *.go . | ||
|
||
ENV CGO_ENABLED=0 | ||
|
||
RUN go build -v -o /go/bin/unbound_exporter ./... | ||
|
||
FROM gcr.io/distroless/static-debian12 | ||
|
||
COPY --from=build /go/bin/unbound_exporter / | ||
|
||
ENTRYPOINT ["/unbound_exporter"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
services: | ||
unbound_exporter: | ||
build: . | ||
command: [ "-unbound.host=unix:///var/run/socket/unbound.ctl" ] | ||
volumes: | ||
- socket:/var/run/socket:ro | ||
ports: | ||
- "9167:9167" | ||
depends_on: | ||
unbound: | ||
condition: service_started | ||
unbound: | ||
image: "mvance/unbound:1.18.0" | ||
volumes: | ||
- socket:/var/run/socket:rw | ||
- ./unbound-example.conf:/opt/unbound/etc/unbound/unbound.conf | ||
ports: | ||
- "1053:1053/udp" | ||
- "1053:1053/tcp" | ||
volumes: | ||
socket: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
server: | ||
cache-max-ttl: 86400 | ||
cache-min-ttl: 300 | ||
directory: "/opt/unbound/etc/unbound" | ||
do-ip4: yes | ||
do-ip6: no | ||
do-tcp: yes | ||
do-udp: yes | ||
edns-buffer-size: 1232 | ||
interface: 0.0.0.0 | ||
port: 1053 | ||
prefer-ip6: no | ||
rrset-roundrobin: yes | ||
username: "_unbound" | ||
log-local-actions: no | ||
log-queries: no | ||
log-replies: no | ||
log-servfail: yes | ||
logfile: /opt/unbound/etc/unbound/unbound.log | ||
verbosity: 2 | ||
infra-cache-slabs: 4 | ||
incoming-num-tcp: 10 | ||
key-cache-slabs: 4 | ||
msg-cache-size: 142768128 | ||
msg-cache-slabs: 4 | ||
num-queries-per-thread: 4096 | ||
num-threads: 3 | ||
outgoing-range: 8192 | ||
rrset-cache-size: 285536256 | ||
rrset-cache-slabs: 4 | ||
minimal-responses: yes | ||
prefetch: yes | ||
prefetch-key: yes | ||
serve-expired: yes | ||
so-reuseport: yes | ||
aggressive-nsec: yes | ||
delay-close: 10000 | ||
do-daemonize: no | ||
do-not-query-localhost: no | ||
neg-cache-size: 4M | ||
qname-minimisation: yes | ||
access-control: 127.0.0.1/32 allow | ||
access-control: 192.168.0.0/16 allow | ||
access-control: 172.16.0.0/12 allow | ||
access-control: 10.0.0.0/8 allow | ||
access-control: fc00::/7 allow | ||
access-control: ::1/128 allow | ||
auto-trust-anchor-file: "var/root.key" | ||
chroot: "" | ||
deny-any: yes | ||
harden-algo-downgrade: yes | ||
harden-below-nxdomain: yes | ||
harden-dnssec-stripped: yes | ||
harden-glue: yes | ||
harden-large-queries: yes | ||
harden-referral-path: no | ||
harden-short-bufsize: yes | ||
hide-http-user-agent: no | ||
hide-identity: yes | ||
hide-version: yes | ||
http-user-agent: "DNS" | ||
identity: "DNS" | ||
private-address: 10.0.0.0/8 | ||
private-address: 172.16.0.0/12 | ||
private-address: 192.168.0.0/16 | ||
private-address: 169.254.0.0/16 | ||
private-address: fd00::/8 | ||
private-address: fe80::/10 | ||
private-address: ::ffff:0:0/96 | ||
ratelimit: 1000 | ||
tls-cert-bundle: /etc/ssl/certs/ca-certificates.crt | ||
unwanted-reply-threshold: 10000 | ||
use-caps-for-id: yes | ||
val-clean-additional: yes | ||
include: /opt/unbound/etc/unbound/a-records.conf | ||
include: /opt/unbound/etc/unbound/srv-records.conf | ||
|
||
remote-control: | ||
control-enable: yes | ||
control-interface: /var/run/socket/unbound.ctl |