This repository has been archived by the owner on Jan 5, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathconfig.yml
146 lines (120 loc) · 3.37 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
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
---
defaults:
app:
jobQueue: null
deprecatedResultStatusQueue: null
deprecatedInitialStatusQueue: null
resultStatusQueue: null
initialStatusQueue: null
buildsTableName: 'TaskclusterGithubBuilds'
ownersDirectoryTableName: 'TaskclusterIntegrationOwners'
checkRunsTableName: 'TaskclusterCheckRuns'
checkTaskRoute: 'checks'
statusTaskRoute: 'statuses'
publishMetaData: !env:bool PUBLISH_METADATA
statusContext: 'Taskcluster'
botName: !env BOT_USERNAME
taskcluster:
rootUrl: !env TASKCLUSTER_ROOT_URL
credentials:
clientId: !env TASKCLUSTER_CLIENT_ID
accessToken: !env TASKCLUSTER_ACCESS_TOKEN
github:
credentials:
privatePEM: !env GITHUB_PRIVATE_PEM
integrationId: !env GITHUB_INTEGRATION_ID
webhook:
secret: !env:list WEBHOOK_SECRET
intree:
provisionerId: !env PROVISIONER_ID
workerType: !env WORKER_TYPE
azure:
accountId: !env AZURE_ACCOUNT_NAME
monitoring:
project: !env MONITORING_PROJECT
enable: !env:bool MONITORING_ENABLE
server:
port: !env:number PORT
env: 'development'
forceSSL: false
trustProxy: false
pulse:
hostname: !env PULSE_HOSTNAME
username: !env PULSE_USERNAME
password: !env PULSE_PASSWORD
vhost: !env PULSE_VHOST
namespace: !env PULSE_NAMESPACE
aws:
accessKeyId: !env AWS_ACCESS_KEY
secretAccessKey: !env AWS_SECRET_KEY
region: 'us-west-2'
apiVersion: '2014-01-01'
production:
app:
jobQueue: 'jobs'
deprecatedResultStatusQueue: 'stat-result'
deprecatedInitialStatusQueue: 'stat-init'
resultStatusQueue: 'ch-result'
initialStatusQueue: 'ch-init'
botName: 'taskcluster[bot]'
intree:
provisionerId: 'aws-provisioner-v1'
workerType: 'github-worker'
server:
env: 'production'
forceSSL: !env:bool FORCE_SSL
trustProxy: !env:bool TRUST_PROXY
taskcluster:
schedulerId: taskcluster-github
pulse:
namespace: taskcluster-github
staging:
app:
jobQueue: 'jobs'
deprecatedResultStatusQueue: 'deprecated-statuses'
deprecatedInitialStatusQueue: 'deprecated-tasks'
resultStatusQueue: 'checks-statuses'
initialStatusQueue: 'checks-tasks'
buildsTableName: 'TaskclusterGithubBuildsStaging'
ownersDirectoryTableName: 'TaskclusterIntegrationOwnersStaging'
name: 'tc-github-staging'
statusContext: 'Taskcluster-Staging'
botName: 'taskcluster-staging[bot]'
intree:
provisionerId: 'aws-provisioner-v1'
workerType: 'github-worker'
server:
env: 'production'
forceSSL: true
# We trust the proxy on heroku, as the SSL end-point provided by heroku
# is a proxy, so we have to trust it.
trustProxy: true
taskcluster:
schedulerId: tc-gh-staging
test:
app:
botName: 'magicalTCspirit'
jobQueue: 'test-jobs'
deprecatedResultStatusQueue: 'deprecated-statuses'
deprecatedInitialStatusQueue: 'deprecated-tasks'
resultStatusQueue: 'checks-statuses'
initialStatusQueue: 'checks-tasks'
webhook:
secret: ['abc123', 'def456']
azure:
accountId: 'jungle'
monitoring:
enable: false
server:
port: 60415
intree:
provisionerId: 'dummy-provisioner'
workerType: 'dummy-worker'
taskcluster:
schedulerId: tc-gh-devel
pulse:
namespace: 'taskcluster-fake'
hostname: 'test-hostname'
username: 'username'
password: 'password'
vhost: 'test-vhost'