-
Notifications
You must be signed in to change notification settings - Fork 0
/
04.api-gateway.nomad.hcl
222 lines (178 loc) · 5.71 KB
/
04.api-gateway.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
#-------------------------------------------------------------------------------
# Job Variables
#-------------------------------------------------------------------------------
variable "consul_image" {
description = "The Consul image to use"
type = string
default = "hashicorp/consul:1.19.1"
}
variable "envoy_image" {
description = "The Envoy image to use"
type = string
default = "hashicorp/envoy:1.29.7"
}
variable "namespace" {
description = "The Nomad namespace to use, which will bind to a specific Consul role"
type = string
default = "ingress"
}
### ----------------------------------------------------------------------------
### Job "API Gateway"
### ----------------------------------------------------------------------------
job "api-gateway" {
namespace = var.namespace
constraint {
attribute = "${meta.nodeRole}"
operator = "="
value = "ingress"
}
## ---------------------------------------------------------------------------
## Group "API Gateway"
## ---------------------------------------------------------------------------
group "api-gateway" {
network {
mode = "bridge"
port "https" {
static = 8443
to = 8443
}
}
consul {
# If the Consul token needs to be for a specific Consul namespace, you'll
# need to set the namespace here
# namespace = "foo"
}
# --------------------------------------------------------------------------
# Task "Setup"
# --------------------------------------------------------------------------
task "setup" {
driver = "docker"
config {
image = var.consul_image # image containing Consul
command = "/bin/sh"
args = [
"-c",
"consul connect envoy -gateway api -register -deregister-after-critical 10s -service ${NOMAD_JOB_NAME} -admin-bind 0.0.0.0:19000 -ignore-envoy-compatibility -bootstrap > ${NOMAD_ALLOC_DIR}/envoy_bootstrap.json"
]
}
lifecycle {
hook = "prestart"
sidecar = false
}
identity {
name = "consul_default"
aud = ["consul.io"]
file = true
ttl = "24h"
# # Send a HUP signal when the token file is updated
# change_mode = "signal"
# change_signal = "SIGHUP"
}
env {
CONSUL_HTTP_ADDR = "http://172.17.0.1:8500"
CONSUL_GRPC_ADDR = "172.17.0.1:8502" # xDS port (non-TLS)
}
}
# --------------------------------------------------------------------------
# Task "API Gateway"
# --------------------------------------------------------------------------
task "api-gw" {
driver = "docker"
identity {
name = "consul_default"
aud = ["consul.io"]
file = true
ttl = "24h"
# # Send a HUP signal when the token file is updated
# change_mode = "signal"
# change_signal = "SIGHUP"
}
# restart {
# mode = delay instructs the client to wait interval time value
# before restarting the task - this should attempt to restart
# the task even after the number of attempts have been
# reached
# mode = "delay"
# attempts = 2
# delay = "10s"
# interval = "15s"
#}
config {
image = var.envoy_image # image containing Envoy
args = [
"--config-path",
"${NOMAD_ALLOC_DIR}/envoy_bootstrap.json",
"--log-level",
"${meta.connect.log_level}",
"--concurrency",
"${meta.connect.proxy_concurrency}",
"--disable-hot-restart"
]
}
}
# --------------------------------------------------------------------------
# Task "Service change"
# --------------------------------------------------------------------------
task "service_change" {
identity {
name = "consul_default"
aud = ["consul.io"]
file = true
ttl = "24h"
}
lifecycle {
hook = "poststart"
}
driver = "raw_exec"
env {
CONSUL_HTTP_ADDR = "http://172.17.0.1:8500"
CONSUL_GRPC_ADDR = "172.17.0.1:8502" # xDS port (non-TLS)
}
config {
command = "consul"
args = ["services", "register", "${NOMAD_TASK_DIR}/svc-api-gateway.hcl"]
}
template {
data = <<EOF
service {
id = "api-gateway"
name = "api-gateway"
kind = "api-gateway"
port = 8443
address = ""
meta = {
public_address = "https://{{ env "attr.unique.platform.aws.public-ipv4" }}:8443"
}
}
EOF
destination = "${NOMAD_TASK_DIR}/svc-api-gateway.hcl"
}
}
# --------------------------------------------------------------------------
# Task "Cleanup"
# --------------------------------------------------------------------------
task "cleanup" {
identity {
name = "consul_default"
aud = ["consul.io"]
file = true
ttl = "24h"
# # Send a HUP signal when the token file is updated
# change_mode = "signal"
# change_signal = "SIGHUP"
}
lifecycle {
hook = "poststop"
}
driver = "raw_exec"
env {
CONSUL_HTTP_ADDR = "http://172.17.0.1:8500"
CONSUL_GRPC_ADDR = "172.17.0.1:8502" # xDS port (non-TLS)
}
config {
command = "consul"
args = ["services", "deregister", "-id=api-gateway"]
}
}
}
}