From 55926dd4e0c4df98dd9645d2e7881e7a581cbaf7 Mon Sep 17 00:00:00 2001 From: Ayden Date: Mon, 21 Oct 2024 13:51:03 +0100 Subject: [PATCH] add dcusr listmonk job (#69) Co-authored-by: wizzdom --- jobs/socs/dcusr-listmonk.hcl | 107 +++++++++++++++++++++++++++++++++++ 1 file changed, 107 insertions(+) create mode 100644 jobs/socs/dcusr-listmonk.hcl diff --git a/jobs/socs/dcusr-listmonk.hcl b/jobs/socs/dcusr-listmonk.hcl new file mode 100644 index 0000000..7a5b48a --- /dev/null +++ b/jobs/socs/dcusr-listmonk.hcl @@ -0,0 +1,107 @@ +job "dcusr-listmonk" { + datacenters = ["aperture"] + type = "service" + + meta { + domain = "lists.solarracing.ie" + } + + group "listmonk" { + network { + port "http" { + } + + port "db" { + to = 5432 + } + } + + service { + name = "listmonk" + port = "http" + + check { + type = "http" + path = "/" + interval = "10s" + timeout = "2s" + } + + tags = [ + "traefik.enable=true", + "traefik.port=${NOMAD_PORT_http}", + "traefik.http.routers.dcusr-listmonk.entrypoints=web,websecure", + "traefik.http.routers.dcusr-listmonk.rule=Host(`${NOMAD_META_domain}`)", + "traefik.http.routers.dcusr-listmonk.tls=true", + "traefik.http.routers.dcusr-listmonk.tls.certresolver=lets-encrypt", + ] + } + + task "app" { + driver = "docker" + + config { + image = "listmonk/listmonk:latest" + ports = ["http"] + + entrypoint = ["./listmonk", "--static-dir=/listmonk/static"] + + volumes = [ + "/storage/nomad/dcusr-listmonk/static:/listmonk/static", + "/storage/nomad/dcusr-listmonk/postgres/:/var/lib/postgresql/data", + "local/config.toml:/listmonk/config.toml" + ] + } + + resources { + cpu = 1000 + memory = 500 + } + + template { + data = <