-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.env.example
67 lines (52 loc) · 1.65 KB
/
.env.example
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
# is sensitive/secret
VAULT_TOKEN=
S3_ACCESS_KEY= # example: object storage access key
S3_SECRET_KEY= # example: object storage secret key
REDIS_PASSWORD= # example: redis password
# needs to be set (no defaults)
namespace= # greenroom or core zone
# disk mounts
ROOT_PATH= # example: ./
CORE_ZONE_LABEL= # example: CORE
GREEN_ZONE_LABEL= # example: GREENROOM
# microservices
DATAOPS_SERVICE= # example: http://dataops.utility:5063
DATASET_SERVICE= # example: http://dataset.utility:5063
METADATA_SERVICE= # example: http://metadata.utility:5066
PROJECT_SERVICE= # example: http://project.utility:5064
# minio
S3_INTERNAL= # example: minio.minio:9000 (no http protocal)
S3_PUBLIC= # example: minio.dev.pilot.indocresearch.org (no http protocal)
# Redis Service
REDIS_HOST= # example: redis-master.redis
REDIS_PORT= # example: 6379
REDIS_DB= # example: 0
# Kafka info
KAFKA_URL= # example: kafka.utility:9092 (no http protocal)
# contains defaults but can be overriden
CONFIG_CENTER_ENABLED=false
# If config center has been enabled, will fetch config
# from value configuration center
VAULT_URL=
VAULT_CRT=
# service information
APP_NAME=service_upload
VERSION= # version of current service
HOST=127.0.0.1
PORT=5077
WORKERS=1
RELOAD=false
LOGGING_LEVEL=20
LOGGING_FORMAT=json
# minio
S3_INTERNAL_HTTPS=false
S3_PUBLIC_HTTPS=true
# Redis Service
REDIS_USER=default
# Kafka info
KAFKA_ACTIVITY_TOPIC=metadata.items.activity
KAFKA_DATASET_ACTIVITY_TOPIC=dataset.activity
# open telemetry configuration
OPEN_TELEMETRY_ENABLED=false
OPEN_TELEMETRY_HOST=127.0.0.1
OPEN_TELEMETRY_PORT=6831