-
Notifications
You must be signed in to change notification settings - Fork 0
/
job.nomad.hcl
50 lines (43 loc) · 935 Bytes
/
job.nomad.hcl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
job "smingo" {
type = "service"
group "smingo" {
network {
port "http" { }
}
service {
name = "smingo"
port = "http"
provider = "nomad"
tags = [
"traefik.enable=true",
"traefik.http.routers.smingo.rule=Host(`smingo.datasektionen.se`)",
"traefik.http.routers.smingo.tls.certresolver=default",
]
}
task "smingo" {
driver = "docker"
config {
image = var.image_tag
ports = ["http"]
}
template {
data = <<ENV
{{ with nomadVar "nomad/jobs/smingo" }}
COOKIE_SECRET={{ .cookie_secret }}
LOGIN_API_KEY={{ .login_api_key }}
{{ end }}
PORT={{ env "NOMAD_PORT_http" }}
ENV
destination = "local/.env"
env = true
}
resources {
memory = 100
}
}
}
}
variable "image_tag" {
type = string
default = "ghcr.io/datasektionen/smingo:latest"
}