homelab/nomad-job/pihole.nomad

89 lines
1.8 KiB
Plaintext
Raw Normal View History

2022-04-03 18:45:50 +00:00
job "pihole" {
datacenters = ["homelab"]
2022-10-29 08:40:01 +00:00
priority = 100
2022-10-17 19:44:55 +00:00
meta {
force = 1
}
2022-04-03 18:45:50 +00:00
type = "service"
2022-10-29 08:40:01 +00:00
constraint {
attribute = "${attr.unique.hostname}"
value = "oscar"
2022-04-03 18:45:50 +00:00
}
2022-10-29 08:40:01 +00:00
group "pi-hole" {
2022-04-03 18:45:50 +00:00
network {
mode = "host"
port "dns" {
2022-10-29 08:40:01 +00:00
static = 53
2022-04-03 18:45:50 +00:00
}
port "http" {
2022-10-29 08:40:01 +00:00
static = 8090
to = 80
2022-04-03 18:45:50 +00:00
}
}
service {
2022-10-29 08:40:01 +00:00
name = "pihole-gui"
tags = ["pihole", "admin",
"homer.enable=true",
"homer.name=Pi-hole",
"homer.service=Application",
"homer.type=PiHole",
"homer.logo=http://${NOMAD_ADDR_http}/admin/img/logo.svg",
"homer.target=_blank",
"homer.url=http://${NOMAD_ADDR_http}/admin",
2022-05-23 19:44:34 +00:00
2022-10-29 08:40:01 +00:00
]
port = "http"
2022-04-03 18:45:50 +00:00
}
task "server" {
driver = "docker"
config {
image = "pihole/pihole:latest"
ports = [
"dns",
"http",
]
2022-10-29 08:40:01 +00:00
volumes = [
"local/dnsmasq.d/02-localresolver.conf:/etc/dnsmasq.d/02-localresolver.conf",
"/mnt/diskstation/nomad/pihole:/etc/pihole"
2022-04-03 18:45:50 +00:00
]
}
2022-10-29 08:40:01 +00:00
vault {
2022-10-30 08:33:39 +00:00
policies = ["pihole"]
2022-04-03 18:45:50 +00:00
2022-10-29 08:40:01 +00:00
}
env {
TZ = "Europe/Paris"
DNS1 = "1.1.1.1"
DNS2 = "80.67.169.40"
2022-04-03 18:45:50 +00:00
2022-10-29 08:40:01 +00:00
}
template {
data = <<EOH
2022-10-30 08:33:39 +00:00
WEBPASSWORD="{{with secret "secrets/data/nomad/pihole"}}{{.Data.data.WEBPASSWORD}}{{end}}"
2022-04-03 18:45:50 +00:00
EOH
destination = "local/file.env"
2022-10-15 08:48:39 +00:00
change_mode = "noop"
2022-04-03 18:45:50 +00:00
env = true
2022-10-29 08:40:01 +00:00
}
template {
data = <<EOH
2022-05-17 18:59:11 +00:00
server=/ducamps.win/192.168.1.10
{{range service "consul"}}server=/consul/{{.Address}}#8600
{{end}}
2022-05-28 14:01:01 +00:00
domain=ducamps.win
no-negcache
2022-05-17 18:59:11 +00:00
local-ttl=2
2022-04-03 18:45:50 +00:00
EOH
2022-10-29 08:40:01 +00:00
destination = "local/dnsmasq.d/02-localresolver.conf"
2022-05-17 18:59:11 +00:00
change_mode = "restart"
2022-04-03 18:45:50 +00:00
}
2022-05-12 09:36:04 +00:00
resources {
memory = 200
}
2022-04-03 18:45:50 +00:00
}
}
}