From 16a7dd42aac39c706d6d3bae23153c8662a43f89 Mon Sep 17 00:00:00 2001 From: Ayden Jahola Date: Mon, 21 Oct 2024 12:33:21 +0100 Subject: [PATCH] add dcusr listmonk job --- jobs/socs/dcusr-listmonk.hcl | 109 +++++++++++++++++++++++++++++++++++ 1 file changed, 109 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..c8d902a --- /dev/null +++ b/jobs/socs/dcusr-listmonk.hcl @@ -0,0 +1,109 @@ +job "dcusr-listmonk" { + datacenters = ["aperture"] + type = "service" + + meta { + domain = "lists.solarracing.ie" + } + + group "listmonk" { + network { + # mode = "bridge" + 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 = ["sh", "-c", "sleep 1000000"] + 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 = <