forked from taskcluster/taskcluster-pulse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.yml
75 lines (61 loc) · 2.03 KB
/
config.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
defaults:
# Application specific configuration keys
app:
# Prefix for exchanges, should always be v1/
exchangePrefix: v1/
namespaceTableName: 'PulseNamespaces'
namespacesExpirationDelay: '- 1 hour'
namespacesRotationDelay: '- 1 hour'
aws:
accessKeyId: !env AWS_ACCESS_KEY_ID
secretAccessKey: !env AWS_SECRET_ACCESS_KEY
region: us-east-1
apiVersion: 2014-01-01
taskcluster:
credentials: # Load strings from environment variables
clientId: !env TASKCLUSTER_CLIENT_ID
accessToken: !env TASKCLUSTER_ACCESS_TOKEN
server:
publicUrl: https://pulse.taskcluster.net
port: !env:number PORT
env: !env NODE_ENV
forceSSL: !env:bool FORCE_SSL
trustProxy: !env:bool TRUST_PROXY
rabbit:
username: !env RABBIT_USERNAME
password: !env RABBIT_PASSWORD
baseUrl: !env RABBIT_BASE_URL
azure:
account: !env AZURE_ACCOUNT_NAME
stressor:
payloadSize: !env STRESSOR_PAYLOAD_SIZE
uploadRate: !env STRESSOR_UPLOAD_RATE
messageCount: !env STRESSOR_MESSAGE_COUNT
amqpUrl: !env STRESSOR_AMQP_URL
targetQueue: !env STRESSOR_TARGET_QUEUE
monitor:
amqpUrl: !env MONITOR_AMQP_URL
refreshInterval: !env MONITOR_REFRESH_INTERVAL
production:
server:
forceSSL: true
trustProxy: true
env: 'production'
test:
server:
publicUrl: http://localhost:60403
port: 60403
forceSSL: false
trustProxy: false
env: development
stressor:
payloadSize: 20
uploadRate: 50
messageCount: 5
amqpUrl: 'amqp://localhost'
targetQueue: 'stressor queue'
monitor:
amqpUrl: 'amqp://localhost'
refreshInterval: 1000
azure:
account: "inMemory"