Merge pull request #9 from novanai/master

Add redis task to nova-timetable job
This commit is contained in:
wizzdom 2023-10-22 17:11:55 +01:00 committed by GitHub
commit 496ba56469
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -10,11 +10,16 @@ job "nova-timetable" {
port "http" {
to = 80
}
port "db" {
to = 6379
}
}
service {
port = "http"
name = "nova-timetable"
port = "http"
check {
type = "http"
path = "/healthcheck"
@ -32,10 +37,24 @@ job "nova-timetable" {
task "python-application" {
driver = "docker"
env {
REDIS_ADDRESS = "${NOMAD_ADDR_db}"
}
config {
image = "novanai/timetable-sync"
ports = ["http"]
}
}
task "redis-db" {
driver = "docker"
config {
image = "redis:latest"
ports = ["db"]
}
}
}
}