From d57a936aa1247484b667c386ca73c46e66869ac3 Mon Sep 17 00:00:00 2001 From: wizzdom Date: Tue, 10 Dec 2024 21:58:53 +0000 Subject: [PATCH] add thecollegeview.ie --- jobs/socs/mps-thecollegeview-backup.hcl | 49 ++++++++ jobs/socs/mps-thecollegeview.hcl | 142 ++++++++++++++++++++++++ 2 files changed, 191 insertions(+) create mode 100644 jobs/socs/mps-thecollegeview-backup.hcl create mode 100644 jobs/socs/mps-thecollegeview.hcl diff --git a/jobs/socs/mps-thecollegeview-backup.hcl b/jobs/socs/mps-thecollegeview-backup.hcl new file mode 100644 index 0000000..f3a9f6d --- /dev/null +++ b/jobs/socs/mps-thecollegeview-backup.hcl @@ -0,0 +1,49 @@ +job "mps-thecollegeview-backup" { + datacenters = ["aperture"] + type = "batch" + + periodic { + crons = ["0 */3 * * * *"] + prohibit_overlap = true + } + + group "db-backup" { + task "mysql-backup" { + driver = "raw_exec" + + config { + command = "/bin/bash" + args = ["local/mysql-backup.sh"] + } + + template { + data = < "${file}" + +find /storage/backups/nomad/mps-thecollegeview/mysql/tcv-mysql* -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> `MySQL` 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 "mysql/webhook/discord" }} +fi +EOH + destination = "local/mysql-backup.sh" + } + } + } +} diff --git a/jobs/socs/mps-thecollegeview.hcl b/jobs/socs/mps-thecollegeview.hcl new file mode 100644 index 0000000..16cc9be --- /dev/null +++ b/jobs/socs/mps-thecollegeview.hcl @@ -0,0 +1,142 @@ +job "mps-thecollegeview" { + datacenters = ["aperture"] + type = "service" + + meta { + domain = "thecollegeview.ie" + } + + group "tcv" { + count = 1 + + network { + mode = "bridge" + port "http" { + to = 80 + } + port "fpm" { + to = 9000 + } + port "db" { + to = 3306 + } + } + + service { + name = "tcv-web" + port = "http" + + check { + type = "http" + path = "/" + interval = "10s" + timeout = "5s" + } + + tags = [ + "traefik.enable=true", + "traefik.http.routers.tcv.rule=Host(`${NOMAD_META_domain}`)", + "traefik.http.routers.tcv.entrypoints=web,websecure", + "traefik.http.routers.tcv.tls.certresolver=lets-encrypt", + ] + } + + task "tcv-web" { + driver = "docker" + + config { + image = "wordpress:php8.3" + ports = ["http"] + + volumes = [ + "/storage/nomad/mps-thecollegeview:/var/www/html/", + ] + } + + resources { + cpu = 800 + memory = 500 + } + + template { + data = <