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/bad.ssb/deploy/ssb-room.hcl | |
parent | 4b527c4db8060679d21e5bb596bde91ce39df393 (diff) | |
download | nixcfg-8d17a07c9be5cd9d400644c34ea50177535d15f6.tar.gz nixcfg-8d17a07c9be5cd9d400644c34ea50177535d15f6.zip |
reorganize some things
Diffstat (limited to 'experimental/bad.ssb/deploy/ssb-room.hcl')
-rw-r--r-- | experimental/bad.ssb/deploy/ssb-room.hcl | 59 |
1 files changed, 0 insertions, 59 deletions
diff --git a/experimental/bad.ssb/deploy/ssb-room.hcl b/experimental/bad.ssb/deploy/ssb-room.hcl deleted file mode 100644 index 049b7dd..0000000 --- a/experimental/bad.ssb/deploy/ssb-room.hcl +++ /dev/null @@ -1,59 +0,0 @@ -job "ssb" { - datacenters = ["neptune"] - type = "service" - - group "ssb-room" { - count = 1 - - constraint { - attribute = "${attr.unique.hostname}" - value = "caribou" - } - - network { - port "web_port" { - to = 8007 - } - port "ssb_port" { - to = 8008 - } - } - - task "go-ssb-room" { - driver = "docker" - config { - image = "lxpz/amd64_ssb_room:3" - readonly_rootfs = true - ports = [ "web_port", "ssb_port" ] - network_mode = "host" - volumes = [ - "/mnt/ssd/ssb-room:/root/.ssb/" - ] - } - user = "root" - - resources { - memory = 200 - } - - service { - name = "ssb-room-http" - tags = [ - "tricot ssb.staging.deuxfleurs.org", - ] - port = "web_port" - address_mode = "driver" - } - - service { - name = "ssb-room-ssb" - tags = [ - "(diplonat (port 8008))", - ] - port = "ssb_port" - address_mode = "driver" - } - } - } -} - |