-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsda-s3-integration.yml
395 lines (379 loc) · 9.49 KB
/
sda-s3-integration.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
services:
credentials:
container_name: credentials
command:
- "/bin/sh"
- "/scripts/make_sda_credentials.sh"
depends_on:
postgres:
condition: service_healthy
rabbitmq:
condition: service_healthy
environment:
- PGPASSWORD=rootpasswd
image: python:3.11-slim
volumes:
- ./scripts:/scripts
- shared:/shared
postgres:
build:
context: ../../postgresql
container_name: postgres
environment:
- POSTGRES_PASSWORD=rootpasswd
healthcheck:
test: ["CMD-SHELL", "pg_isready -U postgres"]
interval: 10s
timeout: 2s
retries: 6
image: ghcr.io/neicnordic/sensitive-data-archive:PR${PR_NUMBER}-postgres
ports:
- "15432:5432"
restart: always
volumes:
- postgres_data:/var/lib/postgresql/data
rabbitmq:
build:
context: ../../rabbitmq
container_name: rabbitmq
healthcheck:
test:
[
"CMD",
"bash",
"-c",
"rabbitmq-diagnostics -q check_running && rabbitmq-diagnostics -q check_local_alarms",
]
interval: 10s
timeout: 5s
retries: 6
image: ghcr.io/neicnordic/sensitive-data-archive:PR${PR_NUMBER}-rabbitmq
ports:
- "15672:15672"
- "5672:5672"
restart: always
volumes:
- rabbitmq_data:/var/lib/rabbitmq
minio:
image: minio/minio:RELEASE.2023-05-18T00-05-36Z
command: server /data --console-address ":9001"
container_name: s3
environment:
- MINIO_ROOT_USER=access
- MINIO_ROOT_PASSWORD=secretKey
- MINIO_SERVER_URL=http://127.0.0.1:9000
healthcheck:
test: ["CMD", "curl", "-fkq", "http://localhost:9000/minio/health/live"]
interval: 10s
timeout: 2s
retries: 6
ports:
- "19000:9000"
- "19001:9001"
volumes:
- minio_data:/data
s3inbox:
build:
args:
GOLANG_VERSION: ${GOLANG_VERSION:-1.20}
context: ../../sda
target: debug
image: ghcr.io/neicnordic/sensitive-data-archive:PR${PR_NUMBER}
command: [ sda-s3inbox ]
container_name: s3inbox
depends_on:
credentials:
condition: service_completed_successfully
minio:
condition: service_healthy
oidc:
condition: service_healthy
postgres:
condition: service_healthy
rabbitmq:
condition: service_healthy
environment:
- BROKER_PASSWORD=inbox
- BROKER_USER=inbox
- BROKER_ROUTINGKEY=inbox
- DB_PASSWORD=inbox
- DB_USER=inbox
restart: always
volumes:
- ./sda/config.yaml:/config.yaml
- shared:/shared
ports:
- "18000:8000"
- "18001:8001"
ingest:
image: ghcr.io/neicnordic/sensitive-data-archive:PR${PR_NUMBER}
command: [ sda-ingest ]
container_name: ingest
depends_on:
credentials:
condition: service_completed_successfully
minio:
condition: service_healthy
postgres:
condition: service_healthy
rabbitmq:
condition: service_healthy
environment:
- BROKER_PASSWORD=ingest
- BROKER_USER=ingest
- BROKER_QUEUE=ingest
- BROKER_ROUTINGKEY=archived
- DB_PASSWORD=ingest
- DB_USER=ingest
restart: always
volumes:
- ./sda/config.yaml:/config.yaml
- shared:/shared
verify:
image: ghcr.io/neicnordic/sensitive-data-archive:PR${PR_NUMBER}
command: [ sda-verify ]
container_name: verify
depends_on:
credentials:
condition: service_completed_successfully
minio:
condition: service_healthy
postgres:
condition: service_healthy
rabbitmq:
condition: service_healthy
environment:
- BROKER_PASSWORD=verify
- BROKER_USER=verify
- BROKER_QUEUE=archived
- BROKER_ROUTINGKEY=verified
- DB_PASSWORD=verify
- DB_USER=verify
restart: always
volumes:
- ./sda/config.yaml:/config.yaml
- shared:/shared
finalize:
image: ghcr.io/neicnordic/sensitive-data-archive:PR${PR_NUMBER}
command: [ sda-finalize ]
container_name: finalize
depends_on:
credentials:
condition: service_completed_successfully
minio:
condition: service_healthy
postgres:
condition: service_healthy
rabbitmq:
condition: service_healthy
environment:
- BROKER_PASSWORD=finalize
- BROKER_USER=finalize
- BROKER_QUEUE=accession
- BROKER_ROUTINGKEY=completed
- DB_PASSWORD=finalize
- DB_USER=finalize
restart: always
volumes:
- ./sda/config.yaml:/config.yaml
- shared:/shared
mapper:
image: ghcr.io/neicnordic/sensitive-data-archive:PR${PR_NUMBER}
command: [ sda-mapper ]
container_name: mapper
depends_on:
credentials:
condition: service_completed_successfully
minio:
condition: service_healthy
postgres:
condition: service_healthy
rabbitmq:
condition: service_healthy
environment:
- BROKER_PASSWORD=mapper
- BROKER_USER=mapper
- BROKER_QUEUE=mappings
- DB_PASSWORD=mapper
- DB_USER=mapper
restart: always
volumes:
- ./sda/config.yaml:/config.yaml
- shared:/shared
oidc:
container_name: oidc
command:
- /bin/sh
- -c
- |
pip install --upgrade pip
pip install aiohttp Authlib joserfc requests
python -u /oidc.py
depends_on:
credentials:
condition: service_completed_successfully
extra_hosts:
- "localhost:host-gateway"
healthcheck:
test: ["CMD", "python3", "-c", 'import requests; print(requests.get(url = "http://localhost:8080/jwk").text)']
interval: 10s
timeout: 2s
retries: 6
image: python:3.11-slim
ports:
- "8080:8080"
restart: always
volumes:
- ./sda/oidc.py:/oidc.py
- shared:/shared
api:
command: [ sda-api ]
container_name: api
depends_on:
credentials:
condition: service_completed_successfully
postgres:
condition: service_healthy
oidc:
condition: service_healthy
rabbitmq:
condition: service_healthy
environment:
- BROKER_PASSWORD=api
- BROKER_USER=api
- DB_PASSWORD=api
- DB_USER=api
image: ghcr.io/neicnordic/sensitive-data-archive:PR${PR_NUMBER}
ports:
- "8090:8080"
restart: always
volumes:
- ./sda/config.yaml:/config.yaml
- ./sda/rbac.json:/rbac.json
- shared:/shared
reencrypt:
image: ghcr.io/neicnordic/sensitive-data-archive:PR${PR_NUMBER}
command: [ sda-reencrypt ]
container_name: reencrypt
depends_on:
credentials:
condition: service_completed_successfully
ports:
- "50051:50051"
restart: always
volumes:
- ./sda/config.yaml:/config.yaml
- shared:/shared
cega-nss:
container_name: cega-nss
depends_on:
credentials:
condition: service_completed_successfully
command:
[
"python",
"/cega/users.py",
"0.0.0.0",
"8443",
"/shared/users.json"
]
environment:
- CEGA_USERS_PASSWORD=test
- CEGA_USERS_USER=test
image: "egarchive/lega-base:release.v0.2.0"
ports:
- "8443:8443"
volumes:
- ./sda/users.py:/cega/users.py
- shared:/shared
auth-cega:
command: [ sda-auth ]
container_name: auth-cega
depends_on:
cega-nss:
condition: service_started
postgres:
condition: service_healthy
environment:
- AUTH_RESIGNJWT=true
- AUTH_CEGA_ID=test
- AUTH_CEGA_SECRET=test
- DB_PASSWORD=auth
- DB_USER=auth
image: ghcr.io/neicnordic/sensitive-data-archive:PR${PR_NUMBER}
ports:
- "8888:8080"
restart: always
volumes:
- ./sda/config.yaml:/config.yaml
- shared:/shared
auth-oidc:
command: [ sda-auth ]
container_name: auth-oidc
depends_on:
postgres:
condition: service_healthy
oidc:
condition: service_healthy
environment:
- AUTH_RESIGNJWT=false
- OIDC_ID=XC56EL11xx
- OIDC_SECRET=wHPVQaYXmdDHg
- OIDC_PROVIDER=http://localhost:8080
- OIDC_REDIRECTURL=http://localhost:8889/oidc/login
- DB_PASSWORD=auth
- DB_USER=auth
extra_hosts:
- "localhost:host-gateway"
image: ghcr.io/neicnordic/sensitive-data-archive:PR${PR_NUMBER}
ports:
- "8889:8080"
restart: always
volumes:
- ./sda/config.yaml:/config.yaml
- shared:/shared
integration_test:
container_name: tester
command:
- "/bin/sh"
- "/tests/run_scripts.sh"
- "/tests/sda"
depends_on:
auth-cega:
condition: service_started
auth-oidc:
condition: service_started
cega-nss:
condition: service_started
credentials:
condition: service_completed_successfully
finalize:
condition: service_started
ingest:
condition: service_started
mapper:
condition: service_started
s3inbox:
condition: service_started
verify:
condition: service_started
api:
condition: service_started
reencrypt:
condition: service_started
extra_hosts:
- "localhost:host-gateway"
environment:
- PGPASSWORD=rootpasswd
- STORAGETYPE=s3
image: python:3.11-slim-bullseye
profiles:
- tests
volumes:
- shared:/shared
- ./tests:/tests
volumes:
minio_data:
postgres_data:
rabbitmq_data:
shared: