diff --git a/jobs/services/hedgedoc-backup.hcl b/jobs/services/hedgedoc-backup.hcl new file mode 100644 index 0000000..71cd9a2 --- /dev/null +++ b/jobs/services/hedgedoc-backup.hcl @@ -0,0 +1,50 @@ +job "hedgedoc-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/hedgedoc/postgresql-hedgedoc* -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/hedgedoc.hcl b/jobs/services/hedgedoc.hcl new file mode 100644 index 0000000..18add3d --- /dev/null +++ b/jobs/services/hedgedoc.hcl @@ -0,0 +1,115 @@ +job "hedgedoc" { + datacenters = ["aperture"] + + type = "service" + + group "web" { + network { + # mode = "bridge" + port "http" { + to = 3000 + } + + port "db" { + to = 5432 + } + } + + service { + name = "hedgedoc" + port = "http" + + check { + type = "http" + path = "/" + interval = "10s" + timeout = "2s" + } + + tags = [ + "traefik.frontend.headers.STSSeconds=63072000", + "traefik.frontend.headers.browserXSSFilter=true", + "traefik.frontend.headers.contentTypeNosniff=true", + "traefik.frontend.headers.customResponseHeaders=alt-svc:h2=l3sb47bzhpbelafss42pspxzqo3tipuk6bg7nnbacxdfbz7ao6semtyd.onion:443; ma=2592000", + "traefik.enable=true", + "traefik.port=${NOMAD_PORT_http}", + "traefik.http.routers.md.rule=Host(`md.redbrick.dcu.ie`,`md.rb.dcu.ie`)", + "traefik.http.routers.md.tls=true", + "traefik.http.routers.md.tls.certresolver=lets-encrypt", + ] + } + + task "app" { + driver = "docker" + + constraint { + attribute = "${attr.unique.hostname}" + value = "chell" + } + + config { + image = "quay.io/hedgedoc/hedgedoc:1.6.0" + ports = ["http"] + } + + template { + data = <