From 4d3c69a7104bd275e057dc918590100f01785811 Mon Sep 17 00:00:00 2001 From: distrobyte Date: Wed, 4 Oct 2023 19:34:42 +0100 Subject: [PATCH] Add job for a nova-timetable user project This file directory structure can be used for 4th year projects (user-projects/(third/fourth)-year-project) I can't validate this, but checkout this branch on one of the hosts and run `nomad job validate ` to ensure the config is okay, followed by `nomad job plan ` to plan it. Run the job at that point using the check-id. Once you're happy that it runs, return to the master branch and merge this PR. nova@redbrick.dcu.ie requested this to be deployed. A DNS entry will need to be made before planning to ensure that the cert can be generated by traefik. --- jobs/user-projects/general/nova-timetable.hcl | 40 +++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 jobs/user-projects/general/nova-timetable.hcl diff --git a/jobs/user-projects/general/nova-timetable.hcl b/jobs/user-projects/general/nova-timetable.hcl new file mode 100644 index 0000000..76611c3 --- /dev/null +++ b/jobs/user-projects/general/nova-timetable.hcl @@ -0,0 +1,40 @@ +job "nova-timetable" { + datacenters = ["aperture"] + + type = "service" + + group "nova-timetable" { + count = 1 + + network { + port "http" { + to = 80 + } + } + + service { + port = "http" + name = "nova-timetable" + check { + type = "http" + path = "/" + interval = "10s" + timeout = "2s" + } + + tags = [ + "traefik.enable=true", + "traefik.http.routers.nova-timetable.rule=Host(`timetable.redbrick.dcu.ie`)", + "traefik.http.routers.nova-timetable.tls=true", + ] + } + + task "python-application" { + driver = "docker" + config { + image = "novanai/timetable-sync" + ports = ["http"] + } + } + } +}