homelab/nomad-job/pacoloco.nomad

67 lines
1.4 KiB
Plaintext
Raw Normal View History

2022-05-10 08:35:50 +00:00
job "pacoloco" {
datacenters = ["homelab"]
2022-12-10 16:10:32 +00:00
priority = 50
2022-10-29 08:40:01 +00:00
type = "service"
2022-05-10 08:35:50 +00:00
meta {
forcedeploy = "0"
}
2022-10-29 08:40:01 +00:00
group "pacoloco" {
2022-05-10 08:35:50 +00:00
network {
mode = "host"
port "http" {
to = 9129
}
}
2022-05-12 09:36:04 +00:00
task "pacoloco-server" {
2022-05-10 08:35:50 +00:00
driver = "docker"
service {
name = "pacoloco"
port = "http"
tags = [
2022-10-29 08:40:01 +00:00
"traefik.enable=true",
"traefik.http.routers.${NOMAD_JOB_NAME}.rule=Host(`arch.ducamps.win`)",
"traefik.http.routers.${NOMAD_JOB_NAME}.tls.domains[0].sans=arch.ducamps.win",
"traefik.http.routers.${NOMAD_JOB_NAME}.tls.certresolver=myresolver",
2022-05-10 08:35:50 +00:00
]
}
config {
image = "ducampsv/pacoloco"
ports = ["http"]
volumes = [
"/mnt/diskstation/archMirror:/var/cache/pacoloco",
"local/pacoloco.yaml:/etc/pacoloco.yaml"
]
}
template {
2022-10-29 08:40:01 +00:00
data = <<EOH
2022-05-10 08:35:50 +00:00
port: 9129
cache_dir: /var/cache/pacoloco
purge_files_after: 360000
download_timeout: 3600
repos:
archlinux_x86_64:
urls:
- http://archlinux.mailtunnel.eu
- http://mirror.cyberbits.eu/archlinux
- http://mirrors.niyawe.de/archlinux
archlinux_armv7h:
url: http://mirror.archlinuxarm.org
prefetch:
cron: 0 0 3 * * * *
ttl_unaccessed_in_days: 30
ttl_unupdated_in_days: 300
EOH
2022-10-29 08:40:01 +00:00
destination = "local/pacoloco.yaml"
2022-05-10 08:35:50 +00:00
}
2022-05-12 09:36:04 +00:00
resources {
memory = 200
}
2022-05-10 08:35:50 +00:00
}
}
}