From 844cd8fb3b636c30291ebc840194d9f1c99792ad Mon Sep 17 00:00:00 2001 From: Gavin Holahan Date: Mon, 30 Dec 2024 01:43:42 +0000 Subject: [PATCH] Moved The Look Online to aperature Co-authored-by: Wizzdom --- jobs/socs/style-thelook-backup.hcl | 49 ++++++ jobs/socs/style-thelook.hcl | 257 +++++++++++++++++++++++++++++ 2 files changed, 306 insertions(+) create mode 100644 jobs/socs/style-thelook-backup.hcl create mode 100644 jobs/socs/style-thelook.hcl diff --git a/jobs/socs/style-thelook-backup.hcl b/jobs/socs/style-thelook-backup.hcl new file mode 100644 index 0000000..3cad608 --- /dev/null +++ b/jobs/socs/style-thelook-backup.hcl @@ -0,0 +1,49 @@ +job "style-thelook-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/style-thelook/mysql/thelook-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/style-thelook.hcl b/jobs/socs/style-thelook.hcl new file mode 100644 index 0000000..a286275 --- /dev/null +++ b/jobs/socs/style-thelook.hcl @@ -0,0 +1,257 @@ +job "style-thelook" { + datacenters = ["aperture"] + type = "service" + + meta { + domain = "thelookonline.dcu.ie" + } + + group "thelook" { + count = 1 + + network { + mode = "bridge" + port "http" { + to = 80 + } + port "fpm" { + to = 9000 + } + port "db" { + to = 3306 + } + port "redis" { + to = 6379 + } + } + + service { + name = "thelook-web" + port = "http" + + check { + type = "http" + path = "/" + interval = "10s" + timeout = "5s" + } + + tags = [ + "traefik.enable=true", + "traefik.http.routers.thelook.rule=Host(`${NOMAD_META_domain}`)", + "traefik.http.routers.thelook.entrypoints=web,websecure", + "traefik.http.routers.thelook.tls.certresolver=lets-encrypt", + ] + } + + + task "thelook-nginx" { + driver = "docker" + + config { + image = "nginx:alpine" + ports = ["http"] + volumes = [ + "local/nginx.conf:/etc/nginx/nginx.conf", + "/storage/nomad/style-thelook:/var/www/html/", + ] + group_add = [82] # www-data in alpine + } + + resources { + cpu = 200 + memory = 100 + } + + template { + data = <