diff options
author | Quentin Dufour <quentin@deuxfleurs.fr> | 2020-05-23 11:38:40 +0200 |
---|---|---|
committer | Quentin Dufour <quentin@deuxfleurs.fr> | 2020-05-23 11:38:40 +0200 |
commit | 5ec3668d5f5b96012d359722b94c40f7f9a7a50b (patch) | |
tree | 7dd66aa8553db1c06c7030f340bf076652f3443c | |
parent | 78f452587ae623033283bda1cb14155c2e49309e (diff) | |
download | infrastructure-5ec3668d5f5b96012d359722b94c40f7f9a7a50b.tar.gz infrastructure-5ec3668d5f5b96012d359722b94c40f7f9a7a50b.zip |
Add platoo
-rw-r--r-- | nomad/platoo.hcl | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/nomad/platoo.hcl b/nomad/platoo.hcl new file mode 100644 index 0000000..e9b9498 --- /dev/null +++ b/nomad/platoo.hcl @@ -0,0 +1,63 @@ +job "platoo" { + datacenters = ["dc1"] + type = "service" + + constraint { + attribute = "${attr.cpu.arch}" + value = "amd64" + } + + group "core" { + task "nodejs" { + driver = "docker" + config { + image = "victorm/platoo:v1" + port_map { + web_port = 8080 + } + } + + template { + data = <<EOH +user=platoo +host=psql-proxy.service.2.cluster.deuxfleurs.fr +database=platoodb +password={{ key "secrets/platoo/bddpw" | trimSpace }} +EOH + destination = "secrets/env" + env = true + } + + resources { + memory = 400 + network { + port "web_port" {} + } + } + + service { + tags = [ + "webstatic", + "traefik.enable=true", + "traefik.frontend.entryPoints=https", + "traefik.frontend.rule=Host:platoo.deuxfleurs.fr;PathPrefix:/" + ] + port = "web_port" + address_mode = "host" + name = "platoo" + check { + type = "tcp" + port = "web_port" + interval = "60s" + timeout = "5s" + check_restart { + limit = 3 + grace = "90s" + ignore_warnings = false + } + } + } + } + } +} + |