-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathserverlessworkflow.yml
484 lines (483 loc) · 9.1 KB
/
serverlessworkflow.yml
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
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
apiVersion: v1
kind: Namespace
metadata:
name: faas
---
apiVersion: v1
kind: Service
metadata:
name: faas-website-externalentry
spec:
type: NodePort
selector:
run: faas-website
ports:
- port: 4200
protocol: TCP
targetPort: 4200
nodePort: 30003
---
apiVersion: v1
kind: Service
metadata:
name: faas-gateway-externalentry
spec:
type: NodePort
selector:
run: faas-gateway
ports:
- port: 5006
protocol: TCP
targetPort: 5006
nodePort: 30001
---
apiVersion: v1
kind: Service
metadata:
name: faas-eventmesh-entry
spec:
type: ClusterIP
selector:
run: faas-eventmesh
ports:
- port: 80
protocol: TCP
targetPort: 5001
---
apiVersion: v1
kind: Service
metadata:
name: faas-application-entry
spec:
type: ClusterIP
selector:
run: faas-application
ports:
- port: 80
protocol: TCP
targetPort: 5002
---
apiVersion: v1
kind: Service
metadata:
name: faas-function-entry
spec:
type: ClusterIP
selector:
run: faas-function
ports:
- port: 80
protocol: TCP
targetPort: 5003
---
apiVersion: v1
kind: Service
metadata:
name: faas-statemachines-entry
spec:
type: ClusterIP
selector:
run: faas-statemachines
ports:
- port: 80
protocol: TCP
targetPort: 5004
---
apiVersion: v1
kind: Service
metadata:
name: faas-gateway-entry
spec:
type: ClusterIP
selector:
run: faas-gateway
ports:
- port: 80
protocol: TCP
targetPort: 5006
---
apiVersion: v1
kind: Service
metadata:
name: faas-kubernetes-entry
spec:
type: ClusterIP
selector:
run: faas-kubernetes
ports:
- port: 80
protocol: TCP
targetPort: 5010
---
apiVersion: v1
kind: Service
metadata:
name: faas-prometheus-entry
spec:
type: ClusterIP
selector:
run: faas-prometheus
ports:
- port: 80
protocol: TCP
targetPort: 9090
---
apiVersion: v1
kind: Service
metadata:
name: mssql-entry
spec:
type: ClusterIP
selector:
app: mssql
ports:
- port: 1433
protocol: TCP
targetPort: 1433
---
apiVersion: v1
kind: Service
metadata:
name: eventstore-cluster
spec:
type: ClusterIP
selector:
app: eventstore-cluster
ports:
- port: 2113
name: eventstore-tcp
targetPort: 2113
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: faas-eventmesh
spec:
selector:
matchLabels:
run: faas-eventmesh
replicas: 1
template:
metadata:
labels:
run: faas-eventmesh
spec:
volumes:
containers:
- name: faas-eventmesh
image: localhost:5000/faaseventmesh
env:
- name: ASPNETCORE_ENVIRONMENT
value: "Docker"
ports:
- containerPort: 5001
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: faas-application
spec:
selector:
matchLabels:
run: faas-application
replicas: 1
template:
metadata:
labels:
run: faas-application
spec:
volumes:
containers:
- name: faas-application
image: localhost:5000/faasapplication
env:
- name: ASPNETCORE_ENVIRONMENT
value: "Docker"
ports:
- containerPort: 5002
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: faas-function
spec:
selector:
matchLabels:
run: faas-function
replicas: 1
template:
metadata:
labels:
run: faas-function
spec:
volumes:
- name: prometheus-pv-storage
persistentVolumeClaim:
claimName: prometheus-pv-claim
containers:
- name: faas-function
image: localhost:5000/faasfunction
env:
- name: ASPNETCORE_ENVIRONMENT
value: "Docker"
ports:
- containerPort: 5003
volumeMounts:
- mountPath: "/shared"
name: prometheus-pv-storage
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: faas-statemachines
spec:
selector:
matchLabels:
run: faas-statemachines
replicas: 1
template:
metadata:
labels:
run: faas-statemachines
spec:
volumes:
containers:
- name: faas-statemachines
image: localhost:5000/faasstatemachine
env:
- name: ASPNETCORE_ENVIRONMENT
value: "Docker"
ports:
- containerPort: 5004
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: faas-gateway
spec:
selector:
matchLabels:
run: faas-gateway
replicas: 1
template:
metadata:
labels:
run: faas-gateway
spec:
containers:
- name: faas-gateway
image: localhost:5000/faasgateway
env:
- name: ASPNETCORE_ENVIRONMENT
value: "Docker"
ports:
- containerPort: 5006
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: faas-kubernetes
spec:
selector:
matchLabels:
run: faas-kubernetes
replicas: 1
template:
metadata:
labels:
run: faas-kubernetes
spec:
containers:
- name: faas-kubernetes
image: localhost:5000/faaskubernetes
ports:
- containerPort: 5010
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: faas-website
spec:
selector:
matchLabels:
run: faas-website
replicas: 1
template:
metadata:
labels:
run: faas-website
spec:
containers:
- name: faas-website
image: localhost:5000/faaswebsite
ports:
- containerPort: 4200
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: mssql-deployment
spec:
replicas: 1
selector:
matchLabels:
app: mssql
strategy:
type: Recreate
template:
metadata:
labels:
app: mssql
spec:
terminationGracePeriodSeconds: 10
securityContext:
fsGroup: 1000
containers:
- name: mssql
image: mcr.microsoft.com/mssql/server
env:
- name: ACCEPT_EULA
value: "Y"
- name: SA_PASSWORD
value: "D54DE7hHpkG9"
---
apiVersion: apps/v1
kind: StatefulSet
metadata:
name: eventstore-cluster
spec:
selector:
matchLabels:
app: eventstore-cluster
replicas: 1
serviceName: eventstore-cluster
template:
metadata:
labels:
app: eventstore-cluster
spec:
volumes:
- name: eventstore-pv-storage
persistentVolumeClaim:
claimName: eventstore-pv-claim
containers:
- name: eventstore-cluster
image: "eventstore/eventstore:20.10.5-buster-slim"
volumeMounts:
- mountPath: "/usr/data/eventstore"
name: eventstore-pv-storage
env:
- name: EVENTSTORE_INT_IP
valueFrom:
fieldRef:
fieldPath: status.podIP
- name: EVENTSTORE_EXT_IP
valueFrom:
fieldRef:
fieldPath: status.podIP
- name: EVENTSTORE_INT_TCP_PORT
value: "1111"
- name: EVENTSTORE_EXT_TCP_PORT
value: "1112"
- name: EVENTSTORE_INT_HTTP_PORT
value: "2114"
- name: EVENTSTORE_EXT_HTTP_PORT
value: "2113"
- name: EVENTSTORE_INSECURE
value: "true"
- name: EVENTSTORE_CLUSTER_SIZE
value: "1"
- name: EVENTSTORE_CLUSTER_DNS
value: "eventstore-cluster.faas.svc.cluster.local"
- name: EVENTSTORE_CLUSTER_GOSSIP_PORT
value: "2114"
- name: EVENTSTORE_GOSSIP_ALLOWED_DIFFERENCE_MS
value: "600000"
- name: EVENTSTORE_INT_HTTP_PREFIXES
value: "http://*:2114/"
- name: EVENTSTORE_EXT_HTTP_PREFIXES
value: "http://*:2113/"
ports:
- containerPort: 2113
- containerPort: 2114
- containerPort: 1111
- containerPort: 1112
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: faas-prometheus
spec:
selector:
matchLabels:
run: faas-prometheus
replicas: 1
template:
metadata:
labels:
run: faas-prometheus
spec:
volumes:
- name: prometheus-pv-storage
persistentVolumeClaim:
claimName: prometheus-pv-claim
containers:
- name: faas-website
image: localhost:5000/faasprometheus
ports:
- containerPort: 9090
volumeMounts:
- mountPath: "/shared"
name: prometheus-pv-storage
---
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: prometheus-pv-claim
spec:
storageClassName: manual
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 3Gi
---
kind: PersistentVolumeClaim
apiVersion: v1
metadata:
name: eventstore-pv-claim
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 2.5Gi
---
apiVersion: v1
kind: PersistentVolume
metadata:
name: prometheus-pv-volume
labels:
type: local
spec:
storageClassName: manual
capacity:
storage: 10Gi
accessModes:
- ReadWriteOnce
hostPath:
path: "/conf"
---
kind: PersistentVolume
apiVersion: v1
metadata:
name: eventstore-pv-volume
labels:
type: local
spec:
capacity:
storage: 10Gi
accessModes:
- ReadWriteOnce
hostPath:
path: "/mnt/data"