forked from MariaDB/buildbot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
master-private.cfg-sample
129 lines (124 loc) · 4.23 KB
/
master-private.cfg-sample
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
private["db_url"] = "mysql://buildmaster:password@localhost/buildbot?max_idle=300&storage_engine=InnoDB"
private["db_host"] = "localhost"
private["db_user"] = "buildmaster"
private["db_password"] = "password"
private["db_mtr_db"] = "buildbot"
private["gh_secret"] = "gh_secret"
private["zabbix_server"] = "https://zabbix.server"
private["zabbix_token"] = "zabbix_token"
private["user_pass"]= {
"admin":"user_pass",
}
private["master-variables"] = {
"max_builds": 16,
"starting_port": 9996,
"workers": {
"amd64": [
'amd-bbw1',
'amd-bbw2',
'intel-bbw1',
],
"aarch64": [
'aarch64-bbw1',
'aarch64-bbw2',
'aarch64-bbw3',
'aarch64-bbw4',
],
"ppc64le": [
'ppc64le-rhel8-bbw1',
'ppc64le-rhel7-bbw1',
'ppc64le-db-bbw1',
'ppc64le-raptor-bbw1',
],
"s390x": [
's390x-bbw1',
's390x-bbw2',
's390x-bbw3',
],
"x86": [
'hz-bbw2',
],
},
}
private["worker_pass"]= {
"hz-bbw2-ubuntu1804":"1234",
"hz-bbw2-libvirt-debian-10":"1234",
"hz-freebsd-bbw1":"1234",
"bm-bbw1-ubuntu1804":"1234",
"shinnok-bbw1-macos":"1234",
"aix-worker":"1234",
"bbw1-mac": "1234",
"bbw2-mac": "1234",
"bbw1-windows":"1234",
"bbw2-windows":"1234",
"bb-rhel8-docker":"1234",
"ro-apexis-bbw03-x64": "1234",
"monty-bbw1-x64": "1234",
"s390x-rhel8":"1234",
"libvirt": "1234",
"bg-bbw1-x64": "1234", # non-latent worker for master-bintars
}
private["docker_workers"]= {
"amd-bbw1-docker":"tcp://IP_address:port",
"amd-bbw2-docker":"tcp://IP_address:port",
"hz-bbw1-docker":"tcp://IP_address:port",
"hz-bbw2-docker":"tcp://IP_address:port",
"hz-bbw4-docker":"tcp://IP_address:port",
"hz-bbw5-docker":"tcp://IP_address:port",
"hz-bbw6-docker":"tcp://IP_address:port",
"gsk-bbw1-docker":"tcp://IP_address:port",
"bm-bbw1-docker":"tcp://IP_address:port",
"ppc64le-rhel8-bbw1-docker":"tcp://IP_address:port",
"ppc64le-rhel7-bbw1-docker":"tcp://IP_address:port",
"ppc64le-db-bbw1-docker":"tcp://IP_address:port",
"ppc64le-raptor-bbw1-docker":"tcp://IP_address:port",
"aarch64-bbw1-docker":"tcp://IP_address:port",
"aarch64-bbw2-docker":"tcp://IP_address:port",
"aarch64-bbw3-docker":"tcp://IP_address:port",
"aarch64-bbw4-docker":"tcp://IP_address:port",
"aarch64-bbw5-docker":"tcp://IP_address:port",
"aarch64-bbw6-docker":"tcp://IP_address:port",
"aarch64-bbw7-docker":"tcp://IP_address:port",
"apexis-bbw1-docker":"tcp://IP_address:port",
"apexis-bbw2-docker":"tcp://IP_address:port",
"apexis-bbw3-docker":"tcp://IP_address:port",
"ns-x64-bbw1-docker":"tcp://IP_address:port", # bg-bbw1
"ns-x64-bbw2-docker":"tcp://IP_address:port", # bg-bbw2
"ns-x64-bbw3-docker":"tcp://IP_address:port", # bg-bbw3
"ns-x64-bbw4-docker":"tcp://IP_address:port", # bg-bbw4
"ns-x64-bbw5-docker":"tcp://IP_address:port", # bg-bbw5
"ns-x64-bbw6-docker":"tcp://IP_address:port", # monty-bbw1
"intel-bbw1-docker":"tcp://IP_address:port",
"s390x-bbw1-docker":"tcp://IP_address:port",
"s390x-bbw2-docker":"tcp://IP_address:port",
"s390x-bbw3-docker":"tcp://IP_address:port",
"aws-bbw1-docker":"tcp://IP_address:port",
"release-prep-docker":"tcp://IP_address:port",
}
private["worker_name_mapping"] = {
"s390x-bbw1": "ibm-s390x-ubuntu20.04",
"s390x-bbw2": "ibm-s390x-sles15",
"s390x-bbw3": "ibm-s390x-rhel8",
}
private["gh_mdbci"]= {
"username":"username",
"name":"username",
"email":"[email protected]",
"access_token":"access_token",
"push_access_token":"push_access_token"
}
# github.com/mariadb/ auth app
private["gh_mdbauth"]= {
"client":"client",
"secret":"secret"
}
# RHEL subscription
private["rhel_sub"]= {
"user":"user",
"password": "password"
}
private["libvirt_workers"] = {
"amd64": ("bb-hz-bbw5", "qemu+ssh://user@IP_address/system"),
"aarch64": ("bb-eq-arm1", "qemu+ssh://user@IP_addres/system"),
"ppc64le": ("bb-db-p9-bbw1", "qemu+ssh://user@IP_adress/system"),
}