2022-05-10 17:41:18 +00:00
|
|
|
job "grafana" {
|
|
|
|
datacenters = ["homelab"]
|
2022-12-10 16:10:32 +00:00
|
|
|
priority = 50
|
2022-05-10 17:41:18 +00:00
|
|
|
type = "service"
|
2024-02-21 18:03:31 +00:00
|
|
|
constraint {
|
|
|
|
attribute = "${node.class}"
|
|
|
|
operator = "set_contains"
|
|
|
|
value = "cluster"
|
|
|
|
}
|
2022-05-10 17:41:18 +00:00
|
|
|
meta {
|
2024-01-13 17:35:18 +00:00
|
|
|
forcedeploiement = 2
|
2022-05-10 17:41:18 +00:00
|
|
|
}
|
|
|
|
group "grafana" {
|
|
|
|
network {
|
|
|
|
port "http" {
|
2022-10-29 08:40:01 +00:00
|
|
|
to = 3000
|
2022-05-10 17:41:18 +00:00
|
|
|
}
|
|
|
|
}
|
2024-01-13 17:35:18 +00:00
|
|
|
volume "grafana" {
|
|
|
|
type = "csi"
|
|
|
|
source = "grafana"
|
|
|
|
access_mode = "multi-node-multi-writer"
|
|
|
|
attachment_mode = "file-system"
|
|
|
|
}
|
2022-05-10 17:41:18 +00:00
|
|
|
service {
|
|
|
|
name = "grafana"
|
|
|
|
port = "http"
|
2022-10-29 08:40:01 +00:00
|
|
|
tags = [
|
2022-05-23 19:44:34 +00:00
|
|
|
"homer.enable=true",
|
|
|
|
"homer.name=Grafana",
|
|
|
|
"homer.service=Monitoring",
|
2023-11-05 18:08:17 +00:00
|
|
|
"homer.logo=https://grafana.ducamps.eu/public/img/grafana_icon.svg",
|
2022-05-23 19:44:34 +00:00
|
|
|
"homer.target=_blank",
|
2023-11-05 18:08:17 +00:00
|
|
|
"homer.url=https://${NOMAD_JOB_NAME}.ducamps.eu",
|
2022-05-23 19:44:34 +00:00
|
|
|
|
2022-05-10 17:41:18 +00:00
|
|
|
"traefik.enable=true",
|
|
|
|
"traefik.http.routers.grafana.entryPoints=websecure",
|
2023-11-05 18:08:17 +00:00
|
|
|
"traefik.http.routers.grafana.rule=Host(`grafana.ducamps.eu`)",
|
|
|
|
"traefik.http.routers.grafana.tls.domains[0].sans=grafana.ducamps.eu",
|
2022-05-10 17:41:18 +00:00
|
|
|
"traefik.http.routers.grafana.tls.certresolver=myresolver",
|
2023-10-07 16:40:40 +00:00
|
|
|
"traefik.http.routers.grafana.entrypoints=web,websecure",
|
|
|
|
|
2022-05-10 17:41:18 +00:00
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
task "dashboard" {
|
2024-01-13 17:35:18 +00:00
|
|
|
volume_mount {
|
|
|
|
volume = "grafana"
|
|
|
|
destination = "/grafana"
|
|
|
|
}
|
2022-05-12 09:37:38 +00:00
|
|
|
driver = "docker"
|
|
|
|
config {
|
|
|
|
image = "grafana/grafana"
|
|
|
|
ports = ["http"]
|
|
|
|
volumes = [
|
2024-01-13 17:35:18 +00:00
|
|
|
"grafana:/etc/grafana",
|
|
|
|
"grafana:/var/lib/grafana"
|
2022-05-12 09:37:38 +00:00
|
|
|
]
|
|
|
|
}
|
|
|
|
resources {
|
2023-11-14 16:45:52 +00:00
|
|
|
memory = 250
|
2022-05-12 09:37:38 +00:00
|
|
|
}
|
2022-05-10 17:41:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|