diff options
author | Alex Auvolat <alex@adnab.me> | 2022-12-24 22:59:37 +0100 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2022-12-24 22:59:37 +0100 |
commit | 8d17a07c9be5cd9d400644c34ea50177535d15f6 (patch) | |
tree | cac734f62d4c04c898d4e70d1e2ba65f933317ca /experimental/app/ssb/deploy/go-ssb-room.hcl | |
parent | 4b527c4db8060679d21e5bb596bde91ce39df393 (diff) | |
download | nixcfg-8d17a07c9be5cd9d400644c34ea50177535d15f6.tar.gz nixcfg-8d17a07c9be5cd9d400644c34ea50177535d15f6.zip |
reorganize some things
Diffstat (limited to 'experimental/app/ssb/deploy/go-ssb-room.hcl')
-rw-r--r-- | experimental/app/ssb/deploy/go-ssb-room.hcl | 83 |
1 files changed, 83 insertions, 0 deletions
diff --git a/experimental/app/ssb/deploy/go-ssb-room.hcl b/experimental/app/ssb/deploy/go-ssb-room.hcl new file mode 100644 index 0000000..c9c4109 --- /dev/null +++ b/experimental/app/ssb/deploy/go-ssb-room.hcl @@ -0,0 +1,83 @@ +job "ssb" { + datacenters = ["neptune"] + type = "service" + + group "go-ssb-room" { + count = 1 + + constraint { + attribute = "${attr.unique.hostname}" + value = "caribou" + } + + network { + port "web_port" { to = 3888 } + port "ssb_port" { to = 8008 } + } + + task "go-ssb-room" { + driver = "docker" + config { + image = "lxpz/amd64_go_ssb_room:1" + readonly_rootfs = true + ports = [ "web_port", "ssb_port" ] + network_mode = "host" + command = "/app/cmd/server/server" + args = [ + "-https-domain=ssb.staging.deuxfleurs.org", + "-repo=/repo", + "-aliases-as-subdomains=false", + "-lishttp=:3888", + ] + volumes = [ + "/mnt/ssd/go-ssb-room:/repo" + ] + } + + resources { + memory = 200 + } + + service { + name = "go-ssb-room-http" + tags = [ + "tricot ssb.staging.deuxfleurs.org", + ] + port = "web_port" + address_mode = "driver" + check { + type = "tcp" + port = "web_port" + interval = "60s" + timeout = "5s" + check_restart { + limit = 3 + grace = "90s" + ignore_warnings = false + } + } + } + + service { + name = "go-ssb-room-ssb" + tags = [ + "(diplonat (port 8008))", + ] + port = "ssb_port" + address_mode = "driver" + check { + type = "tcp" + port = "ssb_port" + interval = "60s" + timeout = "5s" + check_restart { + limit = 3 + grace = "90s" + ignore_warnings = false + } + } + } + } + } +} + |