From 44ac1515123cf1febf6b93369b1ea184e50f0784 Mon Sep 17 00:00:00 2001 From: wizzdom Date: Fri, 28 Feb 2025 15:34:00 +0100 Subject: [PATCH] add uptime kuma (#99) * add uptime kuma * uptime-kuma: move to monitoring/ --- jobs/monitoring/uptime-huma.hcl | 44 +++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 jobs/monitoring/uptime-huma.hcl diff --git a/jobs/monitoring/uptime-huma.hcl b/jobs/monitoring/uptime-huma.hcl new file mode 100644 index 0000000..5ce5e58 --- /dev/null +++ b/jobs/monitoring/uptime-huma.hcl @@ -0,0 +1,44 @@ +job "uptime-kuma" { + datacenters = ["aperture"] + type = "service" + + group "web" { + count = 1 + + network { + port "http" { + to = 3001 + } + } + + service { + port = "http" + + check { + type = "http" + path = "/" + interval = "10s" + timeout = "2s" + } + + tags = [ + "traefik.enable=true", + "traefik.http.routers.uptime-kuma.rule=Host(`status.redbrick.dcu.ie`)", + "traefik.http.routers.uptime-kuma.entrypoints=web,websecure", + "traefik.http.routers.uptime-kuma.tls.certresolver=lets-encrypt", + ] + } + + task "web" { + driver = "docker" + + config { + image = "louislam/uptime-kuma:1" + ports = ["http"] + volumes = [ + "/storage/nomad/uptime-kuma/data:/app/data" + ] + } + } + } +}