nixcfg/cluster/staging/app/im/deploy/im.hcl

176 lines
3.7 KiB
HCL
Raw Normal View History

2021-12-25 21:39:05 +00:00
job "im" {
2021-12-29 21:15:49 +00:00
datacenters = ["neptune"]
type = "service"
group "synapse" {
count = 1
2021-12-29 21:15:49 +00:00
network {
port "http" {
to = 8008
}
}
2021-12-30 16:04:04 +00:00
ephemeral_disk {
2021-12-30 20:07:42 +00:00
size = 10000
}
restart {
attempts = 10
2022-01-10 22:25:48 +00:00
delay = "30s"
2021-12-30 16:04:04 +00:00
}
2021-12-29 23:03:41 +00:00
constraint {
attribute = "${attr.unique.hostname}"
operator = "!="
value = "caribou"
}
2021-12-29 23:03:41 +00:00
task "restore-db" {
lifecycle {
hook = "prestart"
sidecar = false
}
driver = "docker"
config {
2021-12-30 12:27:39 +00:00
image = "litestream/litestream:0.3.7"
2021-12-29 23:03:41 +00:00
args = [
2021-12-30 16:04:04 +00:00
"restore", "-config", "/etc/litestream.yml", "/ephemeral/homeserver.db"
2021-12-29 23:03:41 +00:00
]
2021-12-30 16:04:04 +00:00
volumes = [
2021-12-29 23:03:41 +00:00
"../alloc/data:/ephemeral",
2021-12-30 16:04:04 +00:00
"secrets/litestream.yml:/etc/litestream.yml"
]
2021-12-29 23:03:41 +00:00
}
template {
data = file("../config/litestream.yml")
destination = "secrets/litestream.yml"
}
resources {
2022-11-04 10:22:54 +00:00
memory = 100
memory_max = 1000
2021-12-29 23:03:41 +00:00
cpu = 1000
}
}
2021-12-29 21:15:49 +00:00
task "synapse" {
driver = "docker"
config {
2022-06-01 11:21:32 +00:00
image = "lxpz/amd64_synapse:1.49.2-4"
2021-12-29 21:15:49 +00:00
ports = [ "http" ]
2021-12-29 23:03:41 +00:00
2022-01-10 20:36:27 +00:00
command = "python"
2021-12-29 23:03:41 +00:00
args = [
"-m", "synapse.app.homeserver",
"-n",
"-c", "/etc/matrix-synapse/homeserver.yaml"
]
volumes = [
2021-12-29 23:03:41 +00:00
"secrets:/etc/matrix-synapse",
"../alloc/data:/ephemeral",
]
2021-12-29 21:15:49 +00:00
}
2021-12-29 23:03:41 +00:00
template {
data = file("../config/homeserver.yaml")
destination = "secrets/homeserver.yaml"
}
template {
data = file("../config/synapse.log.config.yaml")
destination = "secrets/synapse.log.config.yaml"
}
2021-12-29 23:03:41 +00:00
template {
data = "{{ key \"secrets/synapse/signing_key\" }}"
destination = "secrets/signing_key"
}
resources {
2022-05-30 15:22:12 +00:00
memory = 2000
2022-11-04 10:22:54 +00:00
memory_max = 3000
2021-12-29 23:03:41 +00:00
cpu = 1000
}
2021-12-30 16:04:04 +00:00
service {
port = "http"
tags = [
"tricot matrix.home.adnab.me 100",
"tricot matrix.home.adnab.me:443 100",
"tricot-add-header Access-Control-Allow-Origin *",
]
check {
type = "http"
path = "/"
interval = "10s"
timeout = "2s"
}
}
2021-12-29 21:15:49 +00:00
}
2022-01-10 20:36:27 +00:00
task "media-async-upload" {
driver = "docker"
config {
image = "lxpz/amd64_synapse:1.49.2-4"
2022-01-10 20:36:27 +00:00
readonly_rootfs = true
command = "/usr/local/bin/matrix-s3-async-sqlite"
work_dir = "/ephemeral"
volumes = [
"../alloc/data:/ephemeral",
]
}
resources {
cpu = 100
2022-05-30 15:22:12 +00:00
memory = 100
2022-11-04 10:22:54 +00:00
memory_max = 500
2022-01-10 20:36:27 +00:00
}
template {
data = <<EOH
SYNAPSE_SQLITE_DB=/ephemeral/homeserver.db
SYNAPSE_MEDIA_STORE=/ephemeral/media_store
SYNAPSE_MEDIA_S3_BUCKET=synapse-data
2022-01-10 20:36:27 +00:00
AWS_ACCESS_KEY_ID={{ key "secrets/synapse/s3_access_key" | trimSpace }}
AWS_SECRET_ACCESS_KEY={{ key "secrets/synapse/s3_secret_key" | trimSpace }}
AWS_DEFAULT_REGION=garage-staging
S3_ENDPOINT=http://{{ env "attr.unique.network.ip-address" }}:3990
2022-01-10 20:36:27 +00:00
EOH
destination = "secrets/env"
env = true
}
}
2021-12-29 23:03:41 +00:00
task "replicate-db" {
driver = "docker"
config {
2021-12-30 12:27:39 +00:00
image = "litestream/litestream:0.3.7"
2021-12-29 23:03:41 +00:00
args = [
2021-12-30 16:04:04 +00:00
"replicate", "-config", "/etc/litestream.yml"
2021-12-29 23:03:41 +00:00
]
2021-12-30 16:04:04 +00:00
volumes = [
2021-12-29 23:03:41 +00:00
"../alloc/data:/ephemeral",
2021-12-30 16:04:04 +00:00
"secrets/litestream.yml:/etc/litestream.yml"
]
2021-12-29 23:03:41 +00:00
}
template {
data = file("../config/litestream.yml")
destination = "secrets/litestream.yml"
}
2021-12-29 23:03:41 +00:00
resources {
2022-11-04 10:22:54 +00:00
memory = 200
memory_max = 1000
2021-12-29 23:03:41 +00:00
cpu = 100
2021-12-29 21:15:49 +00:00
}
}
}
}