-
Notifications
You must be signed in to change notification settings - Fork 0
/
Modfile.yaml
397 lines (397 loc) · 9.36 KB
/
Modfile.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
modfileVersion: "v1"
id: github.com/SENERGY-Platform/mgw-process-module
name: Process Module
version: v0.1.29
type: add-on
deploymentType: single
license: "Apache License 2.0"
services:
process-engine-db:
name: process-engine-db
image: postgres:11.2
process-engine:
name: process-engine
image: ghcr.io/senergy-platform/process-engine:v1.0.1
requiredServices:
- process-engine-db
process-sync:
name: process-sync
image: ghcr.io/senergy-platform/mgw-process-sync-client:v1.0.21
requiredServices:
- process-engine
external-task-worker:
name: external-task-worker
image: ghcr.io/senergy-platform/mgw-external-task-worker:v1.0.20
requiredServices:
- process-engine
process-io-db:
name: process-io-db
image: postgres:11.2
process-io:
name: process-io
image: ghcr.io/senergy-platform/process-io-worker:v1.0.7
requiredServices:
- process-engine
- process-io-db
event-worker:
name: event-worker
image: ghcr.io/senergy-platform/event-worker:v1.0.13
requiredServices:
- process-engine
notify:
name: notify
image: ghcr.io/senergy-platform/mgw-notifier:v1.0.2
dependencies:
github.com/SENERGY-Platform/mgw-mqtt-broker:
version: <v2.0.0
requiredServices:
broker:
- refVar: MGW_MQTT_BROKER
template: "tcp://{ref}:1881"
services:
- process-io
- event-worker
- refVar: MQTT_BROKER
template: "tcp://{ref}:1881"
services:
- process-sync
- external-task-worker
github.com/SENERGY-Platform/mgw-last-value-module:
version: <v2.0.0
requiredServices:
mgw-last-value:
- refVar: TIMESCALE_WRAPPER_URL
template: "http://{ref}:8080"
services:
- external-task-worker
serviceReferences:
process-engine-db:
- refVar: WAIT_FOR
template: "{ref}:5432"
services:
- process-engine
- refVar: DB_HOST
services:
- process-engine
- refVar: DB_URL
template: "jdbc:postgresql://{ref}:5432/camunda"
services:
- process-engine
- refVar: CAMUNDA_DB
template: "postgres://camunda:camunda@{ref}/camunda?sslmode=disable"
services:
- process-sync
process-io-db:
- refVar: POSTGRES_CONN_STRING
template: "postgres://processio:processio@{ref}:5432/processio?sslmode=disable"
services:
- process-io
process-engine:
- refVar: CAMUNDA_URL
template: "http://{ref}:8080"
services:
- process-io
- process-sync
- external-task-worker
- refVar: EVENT_TRIGGER_URL
template: "http://{ref}:8080/engine-rest/message"
services:
- event-worker
notify:
- refVar: NOTIFICATION_URL
template: "http://{ref}:8080"
services:
- process-sync
process-sync:
- refVar: MGW_PROCESS_SYNC_CLIENT_URL
template: "http://{ref}:8080"
services:
- event-worker
volumes:
camundaDbData:
- mountPoint: /var/lib/postgresql/data
services:
- process-engine-db
processIoDbData:
- mountPoint: /var/lib/postgresql/data
services:
- process-io-db
processSyncData:
- mountPoint: /root/db
services:
- process-sync
secrets:
auth:
type: basic-auth
targets:
- refVar: AUTH_USER_NAME
item: username
services:
- external-task-worker
- notify
- event-worker
- refVar: AUTH_PASSWORD
item: password
services:
- external-task-worker
- notify
- event-worker
userInput:
name: Auth Credentials
configs:
processHistoryCleanupInterval:
dataType: string
value: "24h"
targets:
- refVar: HISTORY_CLEANUP_INTERVAL
services:
- process-sync
userInput:
type: text
name: Process History Cleanup Interval
processHistoryCleanupFilterLocaly:
dataType: string
value: "false"
options:
- "true"
- "false"
optionsExt: false
targets:
- refVar: HISTORY_CLEANUP_FILTER_LOCALLY
services:
- process-sync
userInput:
type: text
name: Process History Cleanup Locally
timezone:
dataType: string
value: "Europe/Berlin"
targets:
- refVar: TZ
services:
- process-engine
- refVar: HISTORY_CLEANUP_LOCATION
services:
- process-sync
userInput:
type: text
name: Location / Timezone
processHistoryCleanupBatchSize:
dataType: int
value: 100
targets:
- refVar: HISTORY_CLEANUP_BATCH_SIZE
services:
- process-sync
userInput:
type: number
name: Process History Cleanup Batch-Size
processHistoryCleanupMaxAge:
dataType: string
value: "168h"
targets:
- refVar: HISTORY_CLEANUP_MAX_AGE
services:
- process-sync
userInput:
type: text
name: Process History Cleanup Max Age
processEngineDbDriver:
dataType: string
value: "org.postgresql.Driver"
targets:
- refVar: DB_DRIVER
services:
- process-engine
processEngineDbPostgres:
dataType: string
value: "postgres"
targets:
- refVar: DATABASE
services:
- process-engine
processEngineDbPort:
dataType: string
value: "5432"
targets:
- refVar: DB_PORT
services:
- process-engine
processEngineDbName:
dataType: string
value: "camunda"
targets:
- refVar: DB_NAME
services:
- process-engine
- refVar: POSTGRES_DB
services:
- process-engine-db
processEngineDbUser:
dataType: string
value: "camunda"
targets:
- refVar: DB_USERNAME
services:
- process-engine
- refVar: POSTGRES_USER
services:
- process-engine-db
processEngineDbPw:
dataType: string
value: "camunda"
targets:
- refVar: DB_PASSWORD
services:
- process-engine
- process-engine-db
- refVar: POSTGRES_PASSWORD
services:
- process-engine-db
processEngineDbDataV2:
dataType: string
value: "/var/lib/postgresql/data/pgdata"
targets:
- refVar: PGDATA
services:
- process-engine-db
processIoDbName:
dataType: string
value: "processio"
targets:
- refVar: POSTGRES_DB
services:
- process-io-db
processIoDbUser:
dataType: string
value: "processio"
targets:
- refVar: POSTGRES_USER
services:
- process-io-db
processIoDbPw:
dataType: string
value: "processio"
targets:
- refVar: POSTGRES_PASSWORD
services:
- process-io-db
processIoDbDataV2:
dataType: string
value: "/var/lib/postgresql/data/pgdata"
targets:
- refVar: PGDATA
services:
- process-io-db
processIoIncidentHandler:
dataType: string
value: "mgw"
targets:
- refVar: INCIDENT_HANDLER
services:
- process-io
processIoDataSource:
dataType: string
value: "postgres"
targets:
- refVar: IO_DATA_SOURCE
services:
- process-io
processIoWatchProcessSync:
dataType: string
value: "true"
targets:
- refVar: WATCH_MGW_PROCESS_SYNC
services:
- process-io
processSyncData:
dataType: string
value: "/root/db/bolt.db"
targets:
- refVar: DEPLOYMENT_METADATA_STORAGE
services:
- process-sync
taskWorkerStrategy:
dataType: string
value: "pessimistic"
targets:
- refVar: COMPLETION_STRATEGY
services:
- external-task-worker
taskWorkerCamundaTopic:
dataType: string
value: "pessimistic"
targets:
- refVar: CAMUNDA_TOPIC
services:
- external-task-worker
eventWorkerAuthClientId:
dataType: string
value: "client-connector-lib"
targets:
- refVar: AUTH_CLIENT_ID
services:
- event-worker
eventWorkerMode:
dataType: string
value: "fog"
targets:
- refVar: MODE
services:
- event-worker
eventWorkerMqttClient:
dataType: string
value: "mgw-event-worker"
targets:
- refVar: MGW_MQTT_CLIENT_ID
services:
- event-worker
authUrl:
dataType: string
value: "https://auth.senergy.infai.org"
targets:
- refVar: AUTH_ENDPOINT
services:
- external-task-worker
- notify
- event-worker
userInput:
type: text
name: Auth URL
deviceRepositoryUrl:
dataType: string
value: "https://api.senergy.infai.org/device-repository"
targets:
- refVar: DEVICE_REPO_URL
services:
- external-task-worker
- event-worker
userInput:
type: text
name: Device Repository URL
notificationUrl:
dataType: string
value: "https://api.senergy.infai.org/notifications-v2/notifications"
targets:
- refVar: NOTIFICATION_URL
services:
- notify
userInput:
type: text
name: Notification URL
debug:
dataType: string
value: "true"
options:
- "true"
- "false"
optionsExt: false
targets:
- refVar: DEBUG
services:
- external-task-worker
- notify
- process-sync
userInput:
type: text
name: DEBUG