homelab-nomad/core/ddclient.nomad

49 lines
851 B
Plaintext
Raw Normal View History

2022-07-27 21:45:08 +00:00
job "ddclient" {
datacenters = ["dc1"]
type = "service"
group "ddclient" {
task "ddclient" {
driver = "docker"
config {
image = "linuxserver/ddclient:3.9.1"
mount {
type = "bind"
source = "secrets/ddclient.conf"
2022-07-27 21:45:08 +00:00
target = "/config/ddclient.conf"
}
}
template {
data = <<EOH
{{ with nomadVar "nomad/jobs/ddclient" -}}
2022-07-27 21:45:08 +00:00
daemon=900
ssl=yes
use=web
protocol=cloudflare,
zone={{ .zone }},
2022-07-27 21:45:08 +00:00
ttl=1,
login={{ .cloudflare_api_user }},
password={{ .cloudflare_api_key }}
# login=token,
# password={{ .cloudflare_api_token_dns_edit_all }}
2022-07-27 21:45:08 +00:00
{{ .domain }}
{{- end }}
2022-07-27 21:45:08 +00:00
EOH
destination = "secrets/ddclient.conf"
2022-07-27 21:45:08 +00:00
change_mode = "restart"
}
resources {
cpu = 50
memory = 50
memory_max = 100
2022-07-27 21:45:08 +00:00
}
}
}
}