forked from temporalio/helm-charts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver_deployment_test.yaml
More file actions
377 lines (374 loc) · 11.5 KB
/
server_deployment_test.yaml
File metadata and controls
377 lines (374 loc) · 11.5 KB
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
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
suite: test server deployment
templates:
- server-deployment.yaml
- server-configmap.yaml
set:
server:
enabled: true
config:
persistence:
defaultStore: default
visibilityStore: visibility
datastores:
default:
sql:
password: "secret"
visibility:
sql:
password: "secret"
replicaCount: 2
resources:
requests:
cpu: 100m
frontend:
replicaCount: 3
resources:
requests:
cpu: 200m
tests:
- it: defaults to service wide replica count
template: templates/server-deployment.yaml
documentSelector:
path: '$[?(@.metadata.name != "RELEASE-NAME-temporal-frontend")].kind'
value: Deployment
matchMany: true
asserts:
- equal:
path: spec.replicas
value: 2
- it: favours service specific replica count
template: templates/server-deployment.yaml
documentSelector:
path: metadata.name
value: RELEASE-NAME-temporal-frontend
asserts:
- equal:
path: spec.replicas
value: 3
- it: defaults to service wide resources
template: templates/server-deployment.yaml
documentSelector:
path: '$[?(@.metadata.name != "RELEASE-NAME-temporal-frontend")].kind'
value: Deployment
matchMany: true
asserts:
- equal:
path: spec.template.spec.containers[0].resources.requests.cpu
value: 100m
- it: favours service specific resources
template: templates/server-deployment.yaml
documentSelector:
path: metadata.name
value: RELEASE-NAME-temporal-frontend
asserts:
- equal:
path: spec.template.spec.containers[0].resources.requests.cpu
value: 200m
- it: includes additional init containers
template: templates/server-deployment.yaml
documentSelector:
path: .kind
value: Deployment
matchMany: true
set:
server:
additionalInitContainers:
- name: my-init-container
asserts:
- equal:
path: spec.template.spec.initContainers[0].name
value: my-init-container
- it: includes volume mounts with shim by default
template: templates/server-deployment.yaml
documentSelector:
path: .kind
value: Deployment
matchMany: true
asserts:
- exists:
path: spec.template.spec.containers[0].volumeMounts[?(@.name=='config')]
- exists:
path: spec.template.spec.containers[0].volumeMounts[?(@.name=='dynamic-config')]
- exists:
path: spec.template.spec.containers[0].volumeMounts[?(@.name=='shims')]
- exists:
path: spec.template.spec.volumes[?(@.name=='config')]
- exists:
path: spec.template.spec.volumes[?(@.name=='dynamic-config')]
- exists:
path: spec.template.spec.volumes[?(@.name=='shims')]
- it: includes additional volumes without shim when disabled
template: templates/server-deployment.yaml
documentSelector:
path: .kind
value: Deployment
matchMany: true
set:
shims:
dockerize: false
asserts:
- exists:
path: spec.template.spec.volumes[?(@.name=='config')]
- notExists:
path: spec.template.spec.volumes[?(@.name=='shims')]
- notExists:
path: spec.template.spec.containers[0].volumeMounts[?(@.name=='shims')]
- it: omits prometheus annotations when disabled
template: templates/server-deployment.yaml
documentSelector:
path: '$[?(@.metadata.name == "RELEASE-NAME-temporal-frontend")].kind'
value: Deployment
matchMany: true
set:
server:
frontend:
metrics:
annotations:
enabled: false
asserts:
- notExists:
path: spec.template.metadata.annotations["prometheus.io/job"]
- notExists:
path: spec.template.metadata.annotations["prometheus.io/scrape"]
- notExists:
path: spec.template.metadata.annotations["prometheus.io/port"]
- it: minReadySeconds defaults to service wide resources
template: templates/server-deployment.yaml
documentSelector:
path: '$[?(@.metadata.name == "RELEASE-NAME-temporal-frontend")].kind'
value: Deployment
matchMany: true
set:
server:
minReadySeconds: 10
asserts:
- equal:
path: spec.minReadySeconds
value: 10
- it: minReadySeconds favours service specific resources
template: templates/server-deployment.yaml
documentSelector:
path: '$[?(@.metadata.name == "RELEASE-NAME-temporal-frontend")].kind'
value: Deployment
matchMany: true
set:
server:
minReadySeconds: 10
frontend:
minReadySeconds: 30
asserts:
- equal:
path: spec.minReadySeconds
value: 30
- it: renders log config with defaults
template: templates/server-configmap.yaml
asserts:
- matchRegex:
path: data["config_template.yaml"]
pattern: "stdout: true"
- matchRegex:
path: data["config_template.yaml"]
pattern: 'level: "debug,info"'
- notMatchRegex:
path: data["config_template.yaml"]
pattern: "outputFile:"
- notMatchRegex:
path: data["config_template.yaml"]
pattern: "format:"
- it: renders log config with overrides
template: templates/server-configmap.yaml
set:
server:
config:
logstdOut: false
logLevel: warn
logOutputFile: /var/log/temporal.log
logFormat: json
asserts:
- matchRegex:
path: data["config_template.yaml"]
pattern: "stdout: false"
- matchRegex:
path: data["config_template.yaml"]
pattern: 'level: "warn"'
- matchRegex:
path: data["config_template.yaml"]
pattern: 'outputFile: "/var/log/temporal.log"'
- matchRegex:
path: data["config_template.yaml"]
pattern: 'format: "json"'
- it: deploymentStrategy defaults to service wide resources
template: templates/server-deployment.yaml
documentSelector:
path: '$[?(@.metadata.name == "RELEASE-NAME-temporal-frontend")].kind'
value: Deployment
matchMany: true
set:
server:
deploymentStrategy:
type: RollingUpdate
rollingUpdate:
maxSurge: 25%
maxUnavailable: 25%
asserts:
- equal:
path: spec.strategy.type
value: RollingUpdate
- equal:
path: spec.strategy.rollingUpdate.maxSurge
value: 25%
- equal:
path: spec.strategy.rollingUpdate.maxUnavailable
value: 25%
- it: deploymentStrategy favours service specific resources
template: templates/server-deployment.yaml
documentSelector:
path: '$[?(@.metadata.name == "RELEASE-NAME-temporal-frontend")].kind'
value: Deployment
matchMany: true
set:
server:
deploymentStrategy:
type: Recreate
frontend:
deploymentStrategy:
type: RollingUpdate
rollingUpdate:
maxSurge: 1
maxUnavailable: 0
asserts:
- equal:
path: spec.strategy.type
value: RollingUpdate
- equal:
path: spec.strategy.rollingUpdate.maxSurge
value: 1
- equal:
path: spec.strategy.rollingUpdate.maxUnavailable
value: 0
- it: readinessProbe defaults to empty
template: templates/server-deployment.yaml
documentSelector:
path: '$[?(@.metadata.name == "RELEASE-NAME-temporal-worker")].kind'
value: Deployment
matchMany: true
asserts:
- notExists:
path: spec.template.spec.containers[0].readinessProbe
- it: readinessProbe is set for frontend service
template: templates/server-deployment.yaml
documentSelector:
path: '$[?(@.metadata.name == "RELEASE-NAME-temporal-frontend")].kind'
value: Deployment
matchMany: true
set:
server:
frontend:
readinessProbe:
grpc:
port: 9999
service: temporal.api.workflowservice.v1.WorkflowService
asserts:
- equal:
path: spec.template.spec.containers[0].readinessProbe.grpc.port
value: 9999
- equal:
path: spec.template.spec.containers[0].readinessProbe.grpc.service
value: temporal.api.workflowservice.v1.WorkflowService
- it: readinessProbe is set for history service
template: templates/server-deployment.yaml
documentSelector:
path: '$[?(@.metadata.name == "RELEASE-NAME-temporal-history")].kind'
value: Deployment
matchMany: true
set:
server:
history:
readinessProbe:
initialDelaySeconds: 300
tcpSocket:
port: rpc
asserts:
- equal:
path: spec.template.spec.containers[0].readinessProbe.initialDelaySeconds
value: 300
- equal:
path: spec.template.spec.containers[0].readinessProbe.tcpSocket.port
value: rpc
- it: additional environment variables are set on all services
template: templates/server-deployment.yaml
documentSelector:
path: '$.kind'
value: Deployment
matchMany: true
set:
server:
additionalEnv:
- name: HELLO
value: world
additionalEnvSecretName: secret-env
additionalEnvConfigMapName: configmap-env
asserts:
- equal:
path: spec.template.spec.containers[0].env[?(@.name=="HELLO")].value
value: world
- equal:
path: spec.template.spec.containers[0].envFrom[0].secretRef.name
value: secret-env
- equal:
path: spec.template.spec.containers[0].envFrom[1].configMapRef.name
value: configmap-env
- it: injects secondary visibility store password env var when configured
template: templates/server-deployment.yaml
set:
server:
config:
persistence:
defaultStore: default
visibilityStore: visibility
secondaryVisibilityStore: secondary-visibility
datastores:
default:
sql:
password: "secret"
visibility:
elasticsearch:
password: "secret"
secondary-visibility:
elasticsearch:
password: "secret2"
documentSelector:
path: metadata.name
value: RELEASE-NAME-temporal-frontend
asserts:
- contains:
path: spec.template.spec.containers[0].env
content:
name: TEMPORAL_SECONDARY_VISIBILITY_STORE_PASSWORD
valueFrom:
secretKeyRef:
name: RELEASE-NAME-secondary-visibility-store
key: password
- it: does not inject secondary visibility env var when not configured
template: templates/server-deployment.yaml
set:
server:
config:
persistence:
defaultStore: default
visibilityStore: visibility
datastores:
default:
sql:
password: "secret"
visibility:
elasticsearch:
password: "secret"
documentSelector:
path: metadata.name
value: RELEASE-NAME-temporal-frontend
asserts:
- notContains:
path: spec.template.spec.containers[0].env
content:
name: TEMPORAL_SECONDARY_VISIBILITY_STORE_PASSWORD