forked from taskcluster/taskcluster
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.yml
132 lines (109 loc) · 3.1 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
---
defaults:
app:
jobQueue: null
deprecatedResultStatusQueue: null
deprecatedInitialStatusQueue: null
resultStatusQueue: null
initialStatusQueue: null
buildsTableName: 'TaskclusterGithubBuilds'
ownersDirectoryTableName: 'TaskclusterIntegrationOwners'
checkRunsTableName: 'TaskclusterCheckRuns'
checksToTasksTableName: 'TaskclusterChecksToTasks'
checkTaskRoute: 'checks'
statusTaskRoute: 'statuses'
statusContext: !env APPLICATION_NAME
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
appId: !env GITHUB_APP_ID
webhook:
secret: !env:list WEBHOOK_SECRET
intree:
provisionerId: !env:optional PROVISIONER_ID
workerType: !env:optional WORKER_TYPE
azure:
accountId: !env AZURE_ACCOUNT_ID
monitoring:
level: !env:optional LEVEL
errorConfig: !env:json:optional ERROR_CONFIG
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
production:
app:
jobQueue: 'jobs'
deprecatedResultStatusQueue: 'stat-result'
deprecatedInitialStatusQueue: 'stat-init'
resultStatusQueue: 'ch-result'
initialStatusQueue: 'ch-init'
intree:
provisionerId: 'default-provisioner'
workerType: 'default'
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'
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'
statusContext: 'Taskcluster-Test'
webhook:
secret: ['abc123', 'def456']
azure:
accountId: "pamplemousse"
server:
port: 60415
intree:
provisionerId: 'dummy-provisioner'
workerType: 'dummy-worker'
taskcluster:
schedulerId: tc-gh-devel
rootUrl: "https://tc.example.com"
pulse:
namespace: 'taskcluster-fake'
hostname: 'test-hostname'
username: 'username'
password: 'password'
vhost: 'test-vhost'