aboutsummaryrefslogtreecommitdiff
path: root/nomad
diff options
context:
space:
mode:
authorQuentin Dufour <quentin@deuxfleurs.fr>2019-12-04 16:50:03 +0100
committerQuentin Dufour <quentin@deuxfleurs.fr>2019-12-04 16:50:03 +0100
commitede3a300e5ac2567ea15db6fe40ddd9b7510d9e3 (patch)
treede28b47a997d706229a64ff5a35052785682118b /nomad
parent4c9538d33c1807a8ac75c02db11f955373fd21a8 (diff)
downloadinfrastructure-ede3a300e5ac2567ea15db6fe40ddd9b7510d9e3.tar.gz
infrastructure-ede3a300e5ac2567ea15db6fe40ddd9b7510d9e3.zip
Add Diagnet nomad file
Diffstat (limited to 'nomad')
-rw-r--r--nomad/science.hcl58
1 files changed, 58 insertions, 0 deletions
diff --git a/nomad/science.hcl b/nomad/science.hcl
new file mode 100644
index 0000000..81e398a
--- /dev/null
+++ b/nomad/science.hcl
@@ -0,0 +1,58 @@
+job "science" {
+ datacenters = ["dc1"]
+ type = "service"
+
+ constraint {
+ attribute = "${attr.cpu.arch}"
+ value = "amd64"
+ }
+
+ group "diagnet" {
+ task "main" {
+ driver = "docker"
+ config {
+ image = "lesterpig/diagnet-landmark:latest"
+ args = [
+ "-name", "landmark-deuxfleurs",
+ "-chrome", "-chrome-interval", "60m",
+ "-http", ":8000"
+ ]
+ port_map {
+ web_port = 8000
+ }
+ }
+
+ resources {
+ cpu = 1000
+ memory = 1200
+ network {
+ port "web_port" {}
+ }
+ }
+
+ service {
+ tags = [
+ "diagnet",
+ "traefik.enable=true",
+ "traefik.frontend.entryPoints=https,http",
+ "traefik.frontend.rule=Host:diagnet.science.deuxfleurs.fr;PathPrefix:/"
+ ]
+ port = "web_port"
+ address_mode = "host"
+ name = "diagnet"
+ check {
+ type = "tcp"
+ port = "web_port"
+ interval = "60s"
+ timeout = "5s"
+ check_restart {
+ limit = 3
+ grace = "90s"
+ ignore_warnings = false
+ }
+ }
+ }
+ }
+ }
+}
+