updates job spec for nginx
This commit is contained in:
parent
ebda7c5140
commit
a93693b299
1 changed files with 172 additions and 6 deletions
178
nginx/nginx.hcl
178
nginx/nginx.hcl
|
@ -3,8 +3,8 @@ job "nginx" {
|
|||
|
||||
type = "service"
|
||||
|
||||
group "web" {
|
||||
count = 5
|
||||
group "aperture" {
|
||||
count = 3
|
||||
|
||||
network {
|
||||
port "http" {
|
||||
|
@ -27,13 +27,12 @@ job "nginx" {
|
|||
}
|
||||
tags = [
|
||||
"traefik.enable=true",
|
||||
"traefik.http.routers.nginx.rule=Host(`aperture.redbrick.dcu.ie`)",
|
||||
"traefik.http.routers.nginx.entrypoints=web,websecure",
|
||||
#"traefik.port=${NOMAD_PORT_http}"
|
||||
"traefik.http.routers.nginx-aperture.rule=Host(`aperture.redbrick.dcu.ie`)",
|
||||
"traefik.http.routers.nginx-aperture.entrypoints=web,websecure",
|
||||
]
|
||||
}
|
||||
|
||||
task "frontend" {
|
||||
task "aperture" {
|
||||
driver = "docker"
|
||||
|
||||
config {
|
||||
|
@ -54,4 +53,171 @@ job "nginx" {
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
group "glados" {
|
||||
count = 1
|
||||
|
||||
network {
|
||||
port "http" {
|
||||
to = "80"
|
||||
}
|
||||
|
||||
port "https" {
|
||||
to = "443"
|
||||
}
|
||||
}
|
||||
|
||||
service {
|
||||
port = "http"
|
||||
|
||||
check {
|
||||
type = "http"
|
||||
path = "/"
|
||||
interval = "10s"
|
||||
timeout = "2s"
|
||||
}
|
||||
tags = [
|
||||
"traefik.enable=true",
|
||||
"traefik.http.routers.nginx-glados.rule=Host(`glados.redbrick.dcu.ie`)",
|
||||
"traefik.http.routers.nginx-glados.entrypoints=web,websecure",
|
||||
]
|
||||
}
|
||||
|
||||
task "glados" {
|
||||
constraint {
|
||||
attribute = "${attr.unique.hostname}"
|
||||
value = "glados"
|
||||
}
|
||||
driver = "docker"
|
||||
|
||||
config {
|
||||
image = "nginx"
|
||||
ports = ["http", "https"]
|
||||
volumes = [
|
||||
"local/index.html:/usr/share/nginx/html/index.html",
|
||||
]
|
||||
}
|
||||
|
||||
artifact {
|
||||
source = "https://raw.githubusercontent.com/redbrick/nomad/master/nginx/glados.html"
|
||||
}
|
||||
|
||||
template {
|
||||
source = "local/glados.html"
|
||||
destination = "local/index.html"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
group "wheatley" {
|
||||
count = 1
|
||||
|
||||
network {
|
||||
port "http" {
|
||||
to = "80"
|
||||
}
|
||||
|
||||
port "https" {
|
||||
to = "443"
|
||||
}
|
||||
}
|
||||
|
||||
service {
|
||||
port = "http"
|
||||
|
||||
check {
|
||||
type = "http"
|
||||
path = "/"
|
||||
interval = "10s"
|
||||
timeout = "2s"
|
||||
}
|
||||
tags = [
|
||||
"traefik.enable=true",
|
||||
"traefik.http.routers.nginx-wheatley.rule=Host(`wheatley.redbrick.dcu.ie`)",
|
||||
"traefik.http.routers.nginx-wheatley.entrypoints=web,websecure",
|
||||
]
|
||||
}
|
||||
|
||||
task "wheatley" {
|
||||
constraint {
|
||||
attribute = "${attr.unique.hostname}"
|
||||
value = "wheatley"
|
||||
}
|
||||
|
||||
driver = "docker"
|
||||
|
||||
config {
|
||||
image = "nginx"
|
||||
ports = ["http", "https"]
|
||||
volumes = [
|
||||
"local/index.html:/usr/share/nginx/html/index.html",
|
||||
]
|
||||
}
|
||||
|
||||
artifact {
|
||||
source = "https://raw.githubusercontent.com/redbrick/nomad/master/nginx/wheatley.html"
|
||||
}
|
||||
|
||||
template {
|
||||
source = "local/wheatley.html"
|
||||
destination = "local/index.html"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
group "chell" {
|
||||
count = 1
|
||||
|
||||
network {
|
||||
port "http" {
|
||||
to = "80"
|
||||
}
|
||||
|
||||
port "https" {
|
||||
to = "443"
|
||||
}
|
||||
}
|
||||
|
||||
service {
|
||||
port = "http"
|
||||
|
||||
check {
|
||||
type = "http"
|
||||
path = "/"
|
||||
interval = "10s"
|
||||
timeout = "2s"
|
||||
}
|
||||
tags = [
|
||||
"traefik.enable=true",
|
||||
"traefik.http.routers.nginx-chell.rule=Host(`chell.redbrick.dcu.ie`)",
|
||||
"traefik.http.routers.nginx-chell.entrypoints=web,websecure",
|
||||
]
|
||||
}
|
||||
|
||||
task "chell" {
|
||||
constraint {
|
||||
attribute = "${attr.unique.hostname}"
|
||||
value = "chell"
|
||||
}
|
||||
|
||||
driver = "docker"
|
||||
|
||||
config {
|
||||
image = "nginx"
|
||||
ports = ["http", "https"]
|
||||
volumes = [
|
||||
"local/index.html:/usr/share/nginx/html/index.html",
|
||||
]
|
||||
}
|
||||
|
||||
artifact {
|
||||
source = "https://raw.githubusercontent.com/redbrick/nomad/master/nginx/chell.html"
|
||||
}
|
||||
|
||||
template {
|
||||
source = "local/chell.html"
|
||||
destination = "local/index.html"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue