This repository has been archived on 2023-03-15. You can view files and clone it, but cannot push or open issues or pull requests.
infrastructure/app/platoo/deploy/platoo.hcl

66 lines
1.3 KiB
HCL
Raw Normal View History

2020-05-23 09:38:40 +00:00
job "platoo" {
datacenters = ["dc1"]
type = "service"
2020-12-18 09:32:44 +00:00
priority = 10
2020-05-23 09:38:40 +00:00
constraint {
attribute = "${attr.cpu.arch}"
value = "amd64"
}
group "core" {
2020-12-25 10:21:41 +00:00
network {
port "web_port" { to = 8080 }
}
2020-05-23 09:38:40 +00:00
task "nodejs" {
driver = "docker"
config {
2020-05-23 09:49:33 +00:00
image = "victormoi/platoo:v1"
2020-05-23 14:50:30 +00:00
force_pull = true
2020-12-25 10:21:41 +00:00
ports = [ "web_port" ]
2020-05-23 09:38:40 +00:00
}
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
}
service {
tags = [
2020-05-23 09:53:31 +00:00
"platoo",
2020-05-23 09:38:40 +00:00
"traefik.enable=true",
"traefik.frontend.entryPoints=https",
2021-12-08 11:42:48 +00:00
"traefik.frontend.rule=Host:platoo.deuxfleurs.fr;PathPrefix:/",
"tricot platoo.deuxfleurs.fr",
2020-05-23 09:38:40 +00:00
]
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
}
}
}
}
}
}