forked from traefik/traefik-helm-chart
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathservice-config_test.yaml
403 lines (402 loc) · 9.69 KB
/
service-config_test.yaml
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
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
suite: Service configuration
templates:
- service.yaml
tests:
- it: should provide a single service by default
asserts:
- hasDocuments:
count: 1
- it: should be possible to disable default service
set:
service:
enabled: false
asserts:
- hasDocuments:
count: 0
- it: should fail when no ports are exposed
set:
ports:
web:
expose:
default: false
websecure:
expose:
default: false
asserts:
- failedTemplate:
errorMessage: "ERROR: Cannot create Service RELEASE-NAME-traefik without ports"
- it: should be a type LoadBalancer by default
asserts:
- equal:
path: spec.type
value: LoadBalancer
- it: should be a custom type when specified via values
set:
service:
type: NodePort
asserts:
- equal:
path: spec.type
value: NodePort
- it: should have no annotations by default
asserts:
- isNullOrEmpty:
path: metadata.annotations
- it: should have customized annotations when specified via values
set:
service:
annotations:
azure-load-balancer-internal: true
asserts:
- equal:
path: metadata.annotations.azure-load-balancer-internal
value: true
- it: should have customized labels when specified via values
set:
service:
labels:
custom-label: custom-value
asserts:
- equal:
path: metadata.labels.custom-label
value: custom-value
- it: should have no load balancer class by default
asserts:
- isNull:
path: spec.loadBalancerClass
- it: should have custom spec elements when specified via values
set:
service:
spec:
externalTrafficPolicy: Cluster
loadBalancerIP: "1.2.3.4"
clusterIP: "2.3.4.5"
loadBalancerClass: myclass
loadBalancerSourceRanges:
- 192.168.0.1/32
- 172.16.0.0/16
externalIPs:
- "1.2.3.4"
documentIndex: 0
asserts:
- equal:
path: spec.ports[0].name
value: web
- equal:
path: spec.ports[0].protocol
value: TCP
- equal:
path: spec.externalTrafficPolicy
value: Cluster
- equal:
path: spec.loadBalancerIP
value: "1.2.3.4"
- equal:
path: spec.clusterIP
value: "2.3.4.5"
- equal:
path: spec.loadBalancerSourceRanges[0]
value: 192.168.0.1/32
- equal:
path: spec.loadBalancerSourceRanges[1]
value: 172.16.0.0/16
- equal:
path: spec.externalIPs[0]
value: "1.2.3.4"
- equal:
path: spec.loadBalancerClass
value: myclass
- it: should have custom spec elements when specified via values for TCP ports
set:
ports:
web:
expose:
default: false
websecure:
expose:
default: false
tcp:
port: 3000
expose:
default: true
exposedPort: 8080
protocol: TCP
documentIndex: 0
asserts:
- equal:
path: spec.ports[0].name
value: tcp
- equal:
path: spec.ports[0].protocol
value: TCP
- equal:
path: spec.ports[0].port
value: 8080
- it: should have custom spec elements when specified via values for UDP ports
set:
ports:
web:
expose:
default: false
websecure:
expose:
default: false
udp:
port: 3000
expose:
default: true
exposedPort: 8080
protocol: UDP
documentIndex: 0
asserts:
- equal:
path: spec.ports[0].name
value: udp
- equal:
path: spec.ports[0].protocol
value: UDP
- equal:
path: spec.ports[0].port
value: 8080
- it: should not have ipFamilyPolicy when not specified
set:
ports:
udp:
port: 3000
protocol: UDP
asserts:
- isNull:
path: spec.ipFamilyPolicy
documentIndex: 0
- it: should have custom ipFamilyPolicy when specified via values
set:
service:
ipFamilyPolicy: PreferDualStack
ports:
udp:
port: 3000
protocol: UDP
asserts:
- equal:
path: spec.ipFamilyPolicy
value: PreferDualStack
documentIndex: 0
- it: should not have ipFamilies when not specified
set:
ports:
udp:
port: 3000
protocol: UDP
asserts:
- isNull:
path: spec.ipFamilies
documentIndex: 0
- it: should have custom ipFamilies when specified via values
set:
service:
ipFamilies:
- IPv6
ports:
udp:
port: 3000
protocol: UDP
asserts:
- equal:
path: spec.ipFamilies
value:
- IPv6
documentIndex: 0
- it: should not have appProtocol when not specified
documentIndex: 0
asserts:
- isNull:
path: spec.ports[0].appProtocol
- isNull:
path: spec.ports[1].appProtocol
- it: should have custom appProtocol when specified via values
set:
ports:
web:
appProtocol: http
websecure:
appProtocol: https
documentIndex: 0
asserts:
- equal:
path: spec.ports[0].appProtocol
value: http
- equal:
path: spec.ports[1].appProtocol
value: https
- it: should use default websecure UDP port when http3 is enabled
set:
ports:
websecure:
http3:
enabled: true
tls:
enabled: true
documentIndex: 0
asserts:
- contains:
path: spec.ports
content:
port: 443
name: "websecure-http3"
targetPort: websecure-http3
protocol: UDP
- it: should be possible to advertise a different http3 UDP port
set:
ports:
websecure:
http3:
enabled: true
advertisedPort: 4443
tls:
enabled: true
documentIndex: 0
asserts:
- contains:
path: spec.ports
content:
port: 4443
name: "websecure-http3"
targetPort: websecure-http3
protocol: UDP
- it: should split TCP and UDP Service on http3 when single is false
set:
ports:
websecure:
http3:
enabled: true
service:
single: false
asserts:
- hasDocuments:
count: 2
- contains:
path: spec.ports
content:
port: 443
name: "websecure"
targetPort: websecure
protocol: TCP
documentIndex: 0
- contains:
path: spec.ports
content:
port: 443
name: "websecure-http3"
targetPort: websecure-http3
protocol: UDP
documentIndex: 1
- it: should use advertisedPort with splitted TCP and UDP Service on http3 when single is false
set:
ports:
websecure:
http3:
enabled: true
advertisedPort: 4443
service:
single: false
asserts:
- hasDocuments:
count: 2
- contains:
path: spec.ports
content:
port: 443
name: "websecure"
targetPort: websecure
protocol: TCP
documentIndex: 0
- contains:
path: spec.ports
content:
port: 4443
name: "websecure-http3"
targetPort: websecure-http3
protocol: UDP
documentIndex: 1
- it: should not be possible to use http3 without enabling tls
set:
ports:
websecure:
tls:
enabled: false
http3:
enabled: true
asserts:
- failedTemplate:
errorMessage: "ERROR: You cannot enable http3 without enabling tls"
- it: should use helm managed namespace as default behavior UDP
set:
ports:
udp:
port: 3000
protocol: UDP
asserts:
- equal:
path: metadata.namespace
value: NAMESPACE
- it: should use helm managed namespace as default behavior TCP
set:
ports:
tcp:
port: 3000
protocol: TCP
asserts:
- equal:
path: metadata.namespace
value: NAMESPACE
- it: should accept overridden namespace UDP
set:
namespaceOverride: "traefik-ns-override"
ports:
udp:
port: 3000
protocol: UDP
asserts:
- equal:
path: metadata.namespace
value: "traefik-ns-override"
- it: should accept overridden namespace TCP
set:
namespaceOverride: "traefik-ns-override"
ports:
tcp:
port: 3000
protocol: TCP
asserts:
- equal:
path: metadata.namespace
value: "traefik-ns-override"
- it: should have different target port when targetPort is different from port
set:
ports:
web:
port: 8080
exposedPort: 80
expose:
default: true
targetPort: 80
websecure:
port: 443
exposedPort: 443
expose:
default: true
targetPort: 80
documentIndex: 0
asserts:
- equal:
path: spec.ports[0].port
value: 80
- equal:
path: spec.ports[0].targetPort
value: 80
- equal:
path: spec.ports[1].port
value: 443
- equal:
path: spec.ports[1].targetPort
value: 80