diff options
author | Alex Auvolat <alex@adnab.me> | 2021-12-09 11:04:56 +0100 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2021-12-09 11:04:56 +0100 |
commit | 854da5b98456c389179cd140155202fbc1998233 (patch) | |
tree | 95cc3056394bf53d1615359bebb97b1316a793a8 | |
parent | 8d178815d6c6223127a4e0314b80c45a92de05ad (diff) | |
download | infrastructure-854da5b98456c389179cd140155202fbc1998233.tar.gz infrastructure-854da5b98456c389179cd140155202fbc1998233.zip |
Different tricot config for neptune dc
-rw-r--r-- | app/frontend/deploy/frontend-tricot-neptune.hcl | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/app/frontend/deploy/frontend-tricot-neptune.hcl b/app/frontend/deploy/frontend-tricot-neptune.hcl new file mode 100644 index 0000000..903a0ed --- /dev/null +++ b/app/frontend/deploy/frontend-tricot-neptune.hcl @@ -0,0 +1,66 @@ +job "frontend" { + datacenters = ["neptune"] + type = "service" + priority = 90 + + group "tricot" { + constraint { + attribute = "${attr.unique.hostname}" + operator = "=" + value = "carcajou" + } + + network { + port "http_port" { static = 80 } + port "https_port" { static = 443 } + port "admin_port" { static = 8082 } + } + + task "server" { + driver = "docker" + + config { + image = "lxpz/amd64_tricot:17" + network_mode = "host" + readonly_rootfs = true + ports = [ "http_port", "https_port", "admin_port" ] + } + + resources { + cpu = 1000 + memory = 100 + } + + restart { + interval = "30m" + attempts = 2 + delay = "15s" + mode = "delay" + } + + template { + data = <<EOH +TRICOT_NODE_NAME={{ env "attr.unique.hostname" }} +TRICOT_LETSENCRYPT_EMAIL=alex@adnab.me +RUST_LOG=tricot=trace +EOH + destination = "secrets/env" + env = true + } + + service { + name = "tricot-http" + port = "http_port" + tags = [ "(diplonat (tcp_port 80))" ] + address_mode = "host" + } + + service { + name = "tricot-https" + port = "https_port" + tags = [ "(diplonat (tcp_port 443))" ] + address_mode = "host" + } + } + } +} |