forked from RedHatInsights/playbook-dispatcher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cdappconfig.json
47 lines (47 loc) · 1.2 KB
/
cdappconfig.json
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
{
"publicPort": 8000,
"metricsPort": 9001,
"metricsPath": "/metrics",
"logging": {
"type": "cloudwatch",
"cloudwatch": {
"accessKeyId": "",
"secretAccessKey": "",
"region": "",
"logGroup": ""
}
},
"kafka": {
"brokers": [
{
"hostname": "kafka",
"port": 29092
}
],
"topics": [
{
"requestedName": "platform.playbook-dispatcher.runner-updates",
"name": "platform.playbook-dispatcher.runner-updates"
},
{
"requestedName": "platform.upload.announce",
"name": "platform.upload.announce"
},
{
"requestedName": "platform.upload.validation",
"name": "platform.upload.validation"
}
]
},
"database": {
"sslMode": "disable",
"hostname": "localhost",
"port": 5432,
"name": "insights",
"username": "insights",
"password": "insights",
"adminUsername": "insights",
"adminPassword": "insights",
"rdsCa": "ca"
}
}