diff options
author | Alex Auvolat <alex@adnab.me> | 2021-12-25 19:40:30 +0100 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2021-12-25 19:40:30 +0100 |
commit | 87986ff3cf98d09fa0c477c6087c95a4872a7d0e (patch) | |
tree | eb4bdcc94ecbaf8049339cde7d5f67dbb16aa497 /app/frontend | |
parent | 85eb4d5b82a578bcbfe586a30ed258a1152578e1 (diff) | |
download | infrastructure-87986ff3cf98d09fa0c477c6087c95a4872a7d0e.tar.gz infrastructure-87986ff3cf98d09fa0c477c6087c95a4872a7d0e.zip |
Move out .hcl files specific to Neptune cluster
Diffstat (limited to 'app/frontend')
-rw-r--r-- | app/frontend/deploy/frontend-tricot-neptune.hcl | 67 |
1 files changed, 0 insertions, 67 deletions
diff --git a/app/frontend/deploy/frontend-tricot-neptune.hcl b/app/frontend/deploy/frontend-tricot-neptune.hcl deleted file mode 100644 index d36cce7..0000000 --- a/app/frontend/deploy/frontend-tricot-neptune.hcl +++ /dev/null @@ -1,67 +0,0 @@ -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:25" - network_mode = "host" - readonly_rootfs = true - ports = [ "http_port", "https_port", "admin_port" ] - } - - resources { - cpu = 2000 - memory = 200 - } - - 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 -TRICOT_ENABLE_COMPRESSION=true -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" - } - } - } -} |