add uptime kuma (#99)
* add uptime kuma * uptime-kuma: move to monitoring/
This commit is contained in:
parent
12278b1b44
commit
44ac151512
1 changed files with 44 additions and 0 deletions
44
jobs/monitoring/uptime-huma.hcl
Normal file
44
jobs/monitoring/uptime-huma.hcl
Normal file
|
@ -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"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue