diff --git a/jobs/services/postgres-backup.hcl b/jobs/services/postgres-backup.hcl deleted file mode 100644 index e5e70a1..0000000 --- a/jobs/services/postgres-backup.hcl +++ /dev/null @@ -1,50 +0,0 @@ -job "postgres-backup" { - datacenters = ["aperture"] - type = "batch" - - periodic { - crons = ["0 */3 * * * *"] - prohibit_overlap = true - } - - group "db-backup" { - task "postgres-backup" { - driver = "raw_exec" - - config { - command = "/bin/bash" - args = ["local/script.sh"] - } - - template { - data = < "${file}" - -find /storage/backups/nomad/postgres/postgres* -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/postgres.hcl b/jobs/services/postgres.hcl deleted file mode 100644 index cb9e220..0000000 --- a/jobs/services/postgres.hcl +++ /dev/null @@ -1,96 +0,0 @@ -job "postgres" { - datacenters = ["aperture"] - - constraint { - attribute = "${attr.unique.hostname}" - value = "wheatley" - } - - group "db" { - network { - port "db" { - static = 5432 - } - } - - task "postgres-db" { - driver = "docker" - - template { - data = <