-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.py
57 lines (55 loc) · 1.03 KB
/
config.py
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
#!/usr/bin/env python
gerrit_config = {
'instance': 'review.openstack.org',
'port': '29418',
'mode': 'ssh',
'submissions': {
'778915': {
'actions': [
'watch',
'rebase',
'recheck'
]
},
'780794': {
'actions': [
'watch'
]
},
'781069': {
'actions': [
'watch'
]
}
},
'allowed_ci': [
'Zuul',
'RDO Third Party CI'
],
'user': {
'name': 'cephbot',
'psw': 'None',
'key': '<path_of_the_cephbot_private_key>'
},
'pending_ceph': '778915'
}
irc = {
'server': 'chat.freenode.net',
'port': '6667',
'nick': 'cephbot',
"pass": "cephbot",
'channels': [
'#tripleo-ceph2',
],
'allowed_nicks': [
'fmount'
],
'log': 'cephbot.log',
'callback': [
'hello',
'help',
'gerrit',
'guess',
'squad'
]
}