-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy patharchitecture_test.yaml
More file actions
277 lines (266 loc) · 7.57 KB
/
Copy patharchitecture_test.yaml
File metadata and controls
277 lines (266 loc) · 7.57 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
suite: Test amd64 and arm64 API and worker deployments
templates:
- charts/api/templates/deployment.yaml
- charts/worker/templates/deployment.yaml
- charts/api/templates/service.yaml
set:
global:
lago:
env: production
version: v1.0.0
urls:
api: http://api.test
front: http://front.test
database:
uri: postgresql://localhost
encryption:
key: test-key
salt: test-salt
signing:
hmac: test-hmac
rsa: test-rsa
redis:
uri: redis://localhost
redisCache:
uri: redis://localhost
redisStore:
uri: redis://localhost
architectures:
amd64:
enabled: true
arm64:
enabled: true
api:
replicaCount: 5
image:
repository: example.test/lago-api
resources:
requests:
cpu: 500m
memory: 512Mi
architectures:
amd64:
replicaCount: 4
arm64:
replicaCount: 1
nodeSelector:
kubernetes.io/arch: arm64
tolerations:
- key: arch
operator: Equal
value: arm64
effect: NoSchedule
worker:
replicaCount: 5
image:
repository: example.test/lago-worker
resources:
requests:
cpu: 1
memory: 1Gi
architectures:
amd64:
replicaCount: 3
arm64:
replicaCount: 2
nodeSelector:
kubernetes.io/arch: arm64
tolerations:
- key: arch
operator: Equal
value: arm64
effect: NoSchedule
tests:
- it: leaves the amd64 API deployment unchanged except for its configured replica count
template: charts/api/templates/deployment.yaml
documentIndex: 0
asserts:
- equal:
path: metadata.name
value: RELEASE-NAME-lago-api
- equal:
path: spec.replicas
value: 4
- equal:
path: spec.template.spec.containers[0].image
value: example.test/lago-api:v1.0.0
- equal:
path: spec.template.spec.containers[0].command
value: ["./scripts/start.api.sh"]
- equal:
path: spec.template.spec.containers[0].resources.requests
value:
cpu: 500m
memory: 512Mi
- notExists:
path: spec.template.spec.nodeSelector
- notExists:
path: spec.template.spec.tolerations
- it: renders the arm64 API from the same workload values
template: charts/api/templates/deployment.yaml
documentIndex: 1
asserts:
- equal:
path: metadata.name
value: RELEASE-NAME-lago-api-arm64
- equal:
path: spec.replicas
value: 1
- equal:
path: spec.template.spec.containers[0].image
value: example.test/lago-api:v1.0.0
- equal:
path: spec.template.spec.containers[0].command
value: ["./scripts/start.api.sh"]
- equal:
path: spec.template.spec.containers[0].resources.requests
value:
cpu: 500m
memory: 512Mi
- equal:
path: spec.template.spec.nodeSelector
value:
kubernetes.io/arch: arm64
- contains:
path: spec.template.spec.tolerations
content:
key: arch
operator: Equal
value: arm64
effect: NoSchedule
- it: leaves the amd64 worker deployment unchanged except for its configured replica count
template: charts/worker/templates/deployment.yaml
documentIndex: 0
asserts:
- equal:
path: metadata.name
value: RELEASE-NAME-lago-worker
- equal:
path: spec.replicas
value: 3
- equal:
path: spec.template.spec.containers[0].image
value: example.test/lago-worker:v1.0.0
- equal:
path: spec.template.spec.containers[0].command
value: ["./scripts/start.worker.sh"]
- equal:
path: spec.template.spec.containers[0].resources.requests
value:
cpu: 1
memory: 1Gi
- notExists:
path: spec.template.spec.nodeSelector
- notExists:
path: spec.template.spec.tolerations
- it: renders the arm64 worker from the same workload values
template: charts/worker/templates/deployment.yaml
documentIndex: 1
asserts:
- equal:
path: metadata.name
value: RELEASE-NAME-lago-worker-arm64
- equal:
path: spec.replicas
value: 2
- equal:
path: spec.template.spec.containers[0].image
value: example.test/lago-worker:v1.0.0
- equal:
path: spec.template.spec.containers[0].command
value: ["./scripts/start.worker.sh"]
- equal:
path: spec.template.spec.containers[0].resources.requests
value:
cpu: 1
memory: 1Gi
- equal:
path: spec.template.spec.nodeSelector
value:
kubernetes.io/arch: arm64
- contains:
path: spec.template.spec.tolerations
content:
key: arch
operator: Equal
value: arm64
effect: NoSchedule
- it: renders only the amd64 API when arm64 is globally disabled
template: charts/api/templates/deployment.yaml
set:
global:
architectures:
arm64:
enabled: false
asserts:
- hasDocuments:
count: 1
- it: keeps a separate name in each deployment selector
template: charts/api/templates/deployment.yaml
asserts:
- equal:
path: spec.selector.matchLabels
value:
app.kubernetes.io/name: lago-api
app.kubernetes.io/instance: RELEASE-NAME
documentIndex: 0
- equal:
path: spec.selector.matchLabels
value:
app.kubernetes.io/name: lago-api-arm64
app.kubernetes.io/instance: RELEASE-NAME
documentIndex: 1
- it: gives the pods of both architectures the same component label
template: charts/api/templates/deployment.yaml
asserts:
- equal:
path: spec.template.metadata.labels["app.kubernetes.io/component"]
value: lago-api
documentIndex: 0
- equal:
path: spec.template.metadata.labels["app.kubernetes.io/component"]
value: lago-api
documentIndex: 1
- it: renders one API service that selects the component when arm64 is on
template: charts/api/templates/service.yaml
asserts:
- hasDocuments:
count: 1
- equal:
path: spec.selector
value:
app.kubernetes.io/instance: RELEASE-NAME
app.kubernetes.io/component: lago-api
- it: keeps the original API service selector when arm64 is off
template: charts/api/templates/service.yaml
set:
global:
architectures:
arm64:
enabled: false
asserts:
- equal:
path: spec.selector
value:
app.kubernetes.io/name: lago-api
app.kubernetes.io/instance: RELEASE-NAME
- it: renders an arm64 worker without replicas when KEDA controls it
template: charts/worker/templates/deployment.yaml
set:
worker:
architectures:
arm64:
replicaCount: 0
autoscaling:
enabled: true
external: true
minReplicas: 2
maxReplicas: 8
targetCPUUtilizationPercentage: 80
documentIndex: 1
asserts:
- equal:
path: metadata.name
value: RELEASE-NAME-lago-worker-arm64
- notExists:
path: spec.replicas