diff options
author | Alex Auvolat <alex@adnab.me> | 2021-12-08 13:28:22 +0100 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2021-12-08 13:28:22 +0100 |
commit | a4982c6cd6b8cd2cffdda1c4cabd12a4c47bdb1a (patch) | |
tree | 142782ce65fbfefafa8e6335df854d9f0d516b3c | |
parent | 7f08d5f3240bd8e93a9447ec814d7fbd474851b9 (diff) | |
download | infrastructure-a4982c6cd6b8cd2cffdda1c4cabd12a4c47bdb1a.tar.gz infrastructure-a4982c6cd6b8cd2cffdda1c4cabd12a4c47bdb1a.zip |
last tricot version
-rw-r--r-- | app/frontend/deploy/frontend-tricot.hcl | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/app/frontend/deploy/frontend-tricot.hcl b/app/frontend/deploy/frontend-tricot.hcl index 01b7097..6955bbb 100644 --- a/app/frontend/deploy/frontend-tricot.hcl +++ b/app/frontend/deploy/frontend-tricot.hcl @@ -1,6 +1,6 @@ job "frontend" { datacenters = ["dc1", "neptune"] - type = "system" + type = "service" priority = 90 update { @@ -9,6 +9,12 @@ job "frontend" { } group "tricot" { + count = 3 + constraint { + operator = "distinct_hosts" + value = "true" + } + network { port "http_port" { static = 80 } port "https_port" { static = 443 } @@ -19,7 +25,7 @@ job "frontend" { driver = "docker" config { - image = "lxpz/amd64_tricot:4" + image = "lxpz/amd64_tricot:7" network_mode = "host" readonly_rootfs = true ports = [ "http_port", "https_port", "admin_port" ] @@ -41,7 +47,7 @@ job "frontend" { data = <<EOH TRICOT_NODE_NAME={{ env "attr.unique.hostname" }} TRICOT_LETSENCRYPT_EMAIL=alex@adnab.me -RUST_LOG=tricot=debug +RUST_LOG=tricot=trace EOH destination = "secrets/env" env = true |