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 <path>` to ensure the config is okay, followed by `nomad job plan <path>` 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.
This commit is contained in:
parent
8945418b2a
commit
4d3c69a710
1 changed files with 40 additions and 0 deletions
40
jobs/user-projects/general/nova-timetable.hcl
Normal file
40
jobs/user-projects/general/nova-timetable.hcl
Normal file
|
@ -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"]
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue