From b58c812a3e44c3c28c1fc34fd1ccdb0f7b75b88d Mon Sep 17 00:00:00 2001 From: wizzdom Date: Sun, 9 Feb 2025 20:54:17 +0100 Subject: [PATCH] Use separate DB for all services (#95) * migrate vaultwarden to seperate db * plausible: add separate db, move click mount * privatebin: separate db, cleanup * add privatebin backup job * remove postgres job --- jobs/services/plausible.hcl | 53 +++++++--- jobs/services/postgres.hcl | 96 ------------------- ...tgres-backup.hcl => privatebin-backup.hcl} | 12 +-- jobs/services/privatebin.hcl | 47 ++++++--- jobs/services/vaultwarden-backup.hcl | 50 ++++++++++ jobs/services/vaultwarden.hcl | 37 ++++++- 6 files changed, 162 insertions(+), 133 deletions(-) delete mode 100644 jobs/services/postgres.hcl rename jobs/services/{postgres-backup.hcl => privatebin-backup.hcl} (69%) create mode 100644 jobs/services/vaultwarden-backup.hcl diff --git a/jobs/services/plausible.hcl b/jobs/services/plausible.hcl index a186b96..55cb336 100644 --- a/jobs/services/plausible.hcl +++ b/jobs/services/plausible.hcl @@ -7,12 +7,15 @@ job "plausible" { port "http" { to = 8000 } - port "db" { + port "clickhouse" { static = 8123 } + port "db" { + static = 5432 + } } - task "plausible" { + task "app" { service { name = "plausible" port = "http" @@ -35,8 +38,11 @@ job "plausible" { driver = "docker" config { - image = "ghcr.io/plausible/community-edition:v2.1.1" + image = "ghcr.io/plausible/community-edition:v2.1" ports = ["http"] + volumes = [ + "/storage/nomad/${NOMAD_JOB_NAME}/${NOMAD_TASK_NAME}:/var/lib/plausible" + ] command = "/bin/sh" args = ["-c", "sleep 10 && /entrypoint.sh db migrate && /entrypoint.sh run"] @@ -44,6 +50,8 @@ job "plausible" { template { data = < "${file}" +nomad alloc exec -task db $alloc_id pg_dumpall -U {{ key "privatebin/db/user" }} > "${file}" -find /storage/backups/nomad/postgres/postgres* -ctime +3 -exec rm {} \; || true +find /storage/backups/nomad/privatebin/postgresql-privatebin* -ctime +3 -exec rm {} \; || true if [ -s "$file" ]; then # check if file exists and is not empty echo "Backup successful" diff --git a/jobs/services/privatebin.hcl b/jobs/services/privatebin.hcl index 48644e2..639c96e 100644 --- a/jobs/services/privatebin.hcl +++ b/jobs/services/privatebin.hcl @@ -10,6 +10,9 @@ job "privatebin" { port "http" { to = 8080 } + port "db" { + to = 5432 + } } service { @@ -25,7 +28,7 @@ job "privatebin" { tags = [ "traefik.enable=true", - "traefik.http.routers.privatebin.rule=Host(`paste.rb.dcu.ie`) || Host(`paste.redbrick.dcu.ie`)", + "traefik.http.routers.privatebin.rule=Host(`paste.redbrick.dcu.ie`) || Host(`paste.rb.dcu.ie`)", "traefik.http.routers.privatebin.entrypoints=web,websecure", "traefik.http.routers.privatebin.tls.certresolver=lets-encrypt", ] @@ -42,15 +45,10 @@ job "privatebin" { "local/conf.php:/srv/data/conf.php", ] } - template { - destination = "local/.env" - env = true - change_mode = "restart" - data = < "${file}" + +find /storage/backups/nomad/vaultwarden/postgresql-vaultwarden* -ctime +3 -exec rm {} \; || true + +if [ -s "$file" ]; then # check if file exists and is not empty + echo "Backup successful" + exit 0 +else + rm $file + curl -H "Content-Type: application/json" -d \ + '{"content": "<@&585512338728419341> `PostgreSQL` backup for **'"${job_name}"'** has just **FAILED**\nFile name: `'"$file"'`\nDate: `'"$(TZ=Europe/Dublin date)"'`\nTurn off this script with `nomad job stop '"${job_name}"'` \n\n## Remember to restart this backup job when fixed!!!"}' \ + {{ key "postgres/webhook/discord" }} +fi +EOH + destination = "local/script.sh" + } + } + } +} + diff --git a/jobs/services/vaultwarden.hcl b/jobs/services/vaultwarden.hcl index a13f717..44e42f3 100644 --- a/jobs/services/vaultwarden.hcl +++ b/jobs/services/vaultwarden.hcl @@ -9,6 +9,9 @@ job "vaultwarden" { port "http" { to = 80 } + port "db" { + to = 5432 + } } service { @@ -31,14 +34,15 @@ job "vaultwarden" { ports = ["http"] volumes = [ - "/storage/nomad/vaultwarden:/data" + "/storage/nomad/${NOMAD_JOB_NAME}:/data", + "/etc/localtime:/etc/localtime:ro" ] } template { data = <