-
Notifications
You must be signed in to change notification settings - Fork 10
/
config-sample.json
65 lines (65 loc) · 1.46 KB
/
config-sample.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"logger": {
"level": "debug"
},
"db": {
"implementation": "mysql",
"connection": "root:@(localhost:3306)/grid?tx_isolation=SERIALIZABLE&parseTime=true&interpolateParams=true"
},
"grid": {
"client_type": "selenium",
"port": 4444,
"strategy_list": [
{
"type": "persistent"
},
{
"type": "kubernetes",
"limit": 20,
"params": {},
"node_list": [
{
"params": {
"image":"myimage:latest",
"port": "5555"
},
"capabilities_list": [
{
"browserName": "firefox",
"browserVersion": 50
},
{
"browserName": "chrome",
"browserVersion": 150
}
]
},
{
"params": {
"image":"myimage2:latest",
"port": "5555"
},
"capabilities_list": [
{
"browserName": "firefox",
"browserVersion": 54
}
]
}
]
}
],
"busy_node_duration": "15m",
"reserved_node_duration": "5m"
},
"statsd": {
"host": "statsd-host",
"port": 8126,
"protocol": "udp",
"prefix": "products.tests.qa.debug-dev.jsonwire-grid.",
"enable": false,
"selectors": [
{"tag": "chrome", "capabilities": {"browserName": "chrome"}}
]
}
}