diff --git a/jobs/socs/mps-site.hcl b/jobs/socs/mps-site.hcl index 5dc4939..458a98b 100644 --- a/jobs/socs/mps-site.hcl +++ b/jobs/socs/mps-site.hcl @@ -46,9 +46,6 @@ job "mps-site" { username = "${DOCKER_USER}" password = "${DOCKER_PASS}" } - volumes = [ - "local/hosts:/etc/hosts", - ] } template { @@ -60,23 +57,6 @@ EOH env = true } - 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..23eab7e --- /dev/null +++ b/jobs/socs/mps-thecollegeview.hcl @@ -0,0 +1,209 @@ +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-nginx" { + driver = "docker" + config { + image = "nginx:alpine" + ports = ["http"] + volumes = [ + "local/nginx.conf:/etc/nginx/nginx.conf", + "/storage/nomad/mps-thecollegeview:/var/www/html/", + ] + } + resources { + cpu = 200 + memory = 100 + } + template { + data = <