-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathconfig-default.yaml
More file actions
63 lines (47 loc) · 1.62 KB
/
config-default.yaml
File metadata and controls
63 lines (47 loc) · 1.62 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
##########
# SERVER #
##########
HOSTNAME: localhost
APP_DEBUG: false
# httpx debug mode is very verbose, so the setting is separate from the main app debug mode
HTTPX_DEBUG: false
DOCS_URL_PREFIX: /gen3workflow
# override the default Arborist URL; ignored if already set as an environment variable
ARBORIST_URL:
# /!\ only use for development! Allows running gen3workflow locally without Arborist interaction
MOCK_AUTH: false
##########
# AWS S3 #
##########
USER_BUCKETS_REGION: us-east-1
# objects created in S3 for/by workflows are deleted after the specified number of days
S3_OBJECTS_EXPIRATION_DAYS: 30
# configure an AWS IAM key to use when making S3 requests on behalf of users. If left empty, it
# is assumed there is an existing STS session we can get credentials from.
S3_ENDPOINTS_AWS_ACCESS_KEY_ID:
S3_ENDPOINTS_AWS_SECRET_ACCESS_KEY:
KMS_ENCRYPTION_ENABLED: true
#############
# DATABASE #
#############
DB_DRIVER: postgresql+asyncpg
DB_HOST: localhost
DB_PORT: 5432
DB_USER: postgres
DB_PASSWORD: postgres
DB_DATABASE: gen3workflow_test
#############
# GA4GH TES #
#############
TES_SERVER_URL: http://funnel:8000
# List of whitelisted images to be allowed by the Gen3Workflow Service to forward to TES server.
# Image names can contain wildcards with `*` and username as a placeholder within curly braces e.g. {username}
TASK_IMAGE_WHITELIST: []
# - public.ecr.aws/random/approved/public:*
# - 9876543210.dkr.ecr.us-east-1.amazonaws.com/approved/{username}:abc
# - quay.io/nextflow/bash:*
#############
# METRICS #
#############
ENABLE_PROMETHEUS_METRICS: false
PROMETHEUS_MULTIPROC_DIR: /var/tmp/prometheus_metrics