aboutsummaryrefslogtreecommitdiff
path: root/app/frontend
diff options
context:
space:
mode:
authorAlex Auvolat <alex@adnab.me>2021-12-25 19:40:51 +0100
committerAlex Auvolat <alex@adnab.me>2021-12-25 19:40:51 +0100
commit60dc1b21a1fdbebae663790e1e07afe704758d61 (patch)
tree0d96ce82707c6e9caae59deadbdea245f6830e73 /app/frontend
parente77254e97f16dfec41277e46ba3ddc7e2bd3d664 (diff)
downloadnixcfg-60dc1b21a1fdbebae663790e1e07afe704758d61.tar.gz
nixcfg-60dc1b21a1fdbebae663790e1e07afe704758d61.zip
Add hcl files in here for staging cluster
Diffstat (limited to 'app/frontend')
-rw-r--r--app/frontend/deploy/frontend-tricot.hcl67
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"
+ }
+ }
+ }
+}