diff options
author | Alex Auvolat <alex@adnab.me> | 2021-12-25 19:40:51 +0100 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2021-12-25 19:40:51 +0100 |
commit | 60dc1b21a1fdbebae663790e1e07afe704758d61 (patch) | |
tree | 0d96ce82707c6e9caae59deadbdea245f6830e73 /app/frontend/deploy/frontend-tricot.hcl | |
parent | e77254e97f16dfec41277e46ba3ddc7e2bd3d664 (diff) | |
download | nixcfg-60dc1b21a1fdbebae663790e1e07afe704758d61.tar.gz nixcfg-60dc1b21a1fdbebae663790e1e07afe704758d61.zip |
Add hcl files in here for staging cluster
Diffstat (limited to 'app/frontend/deploy/frontend-tricot.hcl')
-rw-r--r-- | app/frontend/deploy/frontend-tricot.hcl | 67 |
1 files changed, 67 insertions, 0 deletions
diff --git a/app/frontend/deploy/frontend-tricot.hcl b/app/frontend/deploy/frontend-tricot.hcl new file mode 100644 index 0000000..d36cce7 --- /dev/null +++ b/app/frontend/deploy/frontend-tricot.hcl @@ -0,0 +1,67 @@ +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" + } + } + } +} |