aboutsummaryrefslogtreecommitdiff
path: root/app/frontend
diff options
context:
space:
mode:
authorAlex Auvolat <alex@adnab.me>2021-12-25 19:40:30 +0100
committerAlex Auvolat <alex@adnab.me>2021-12-25 19:40:30 +0100
commit87986ff3cf98d09fa0c477c6087c95a4872a7d0e (patch)
treeeb4bdcc94ecbaf8049339cde7d5f67dbb16aa497 /app/frontend
parent85eb4d5b82a578bcbfe586a30ed258a1152578e1 (diff)
downloadinfrastructure-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.hcl67
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"
- }
- }
- }
-}