-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.prod
57 lines (49 loc) · 1.88 KB
/
.env.prod
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
### Global
# Host where this instance is hosted
HOST=scopem-openem.ethz.ch
# Certificate
CERTIFICATE_FILE=.certs/cert_bundle.pem
# Private Key
CERTIFICATE_KEY_FILE=.certs/cert.key
### Identity Provider / Broker (Keycloak)
IDP_URL=https://scopem-openem.ethz.ch/keycloak
IDP_USERNAME=archiver-service
IDP_REALM=facility
IDP_AUDIENCE=account
IDP_CLIENT_ID=archiver-service-api
### Archiver Service API
# Image used for backend service
OPENEM_BACKEND_IMAGE_NAME=ghcr.io/swissopenem/archiver-service-api
OPENEM_IMAGE_TAG="latest"
# Root folder where Docker volume of LTS share is mounted, i.e. root folder of the LTS share
LTS_ROOT_FOLDER = /tmp/LTS
# User and group id for LTS: these are the ids used to write files to the LTS. Only this user can read the files again
LTS_USER_ID=999
LTS_GROUP_ID=999
# Backend server api root path
API_ROOT_PATH=/archiver/api/v1
#### Minio
MINIO_REGION="eu-west-1"
MINIO_RETRIEVAL_BUCKET="retrieval"
MINIO_LANDINGZONE_BUCKET="landingzone"
MINIO_STAGING_BUCKET="staging"
MINIO_ENDPOINT="scopem-openemdata.ethz.ch:9090"
MINIO_EXTERNAL_ENDPOINT="scopem-openemdata.ethz.ch:9090"
#### PREFECT
# Prefect version used in all images
PREFECT_VERSION=3.1.11-python3.11
# Logging level
PREFECT_LOGGING_LEVEL=DEBUG
# Image name for containers used to execute flows
PREFECT_RUNTIME_IMAGE_NAME=ghcr.io/swissopenem/scopemarchiver-openem-runtime
# Image name for configuration container
PREFECT_CONFIG_IMAGE_NAME=ghcr.io/swissopenem/scopemarchiver-openem-config
# Name of the Docker volume where the LTS NFS share is mounted
PREFECT_WORKER_LTS_VOLUME_NAME=nfs-lts-share
# Production Prefect job template
PREFECT_JOB_TEMPLATE=prefect-jobtemplate-prod.json
# Workpool name for archiver jobs
PREFECT_ARCHIVAL_WORKPOOL_NAME=archival-docker-workpool
# Workpool name for retrieval jobs
PREFECT_RETRIEVAL_WORKPOOL_NAME=retrieval-docker-workpool
SCICAT_ENDPOINT=https://scopem-openem.ethz.ch/scicat/backend