-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmaster.json
More file actions
56 lines (56 loc) · 1.19 KB
/
master.json
File metadata and controls
56 lines (56 loc) · 1.19 KB
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
{
"id": "/locust/locust-master",
"cpus": 1,
"mem": 4096,
"instances": 1,
"container": {
"type": "DOCKER",
"docker": {
"image": "lloesche/locust-dcos",
"network": "BRIDGE",
"portMappings": [
{
"containerPort": 8089,
"hostPort": 0,
"protocol": "tcp",
"labels": {
"VIP_0": "10.0.7.10:8089"
}
},
{
"containerPort": 5557,
"hostPort": 0,
"protocol": "tcp",
"labels": {
"VIP_0": "10.0.7.10:5557"
}
},
{
"containerPort": 5558,
"hostPort": 0,
"protocol": "tcp",
"labels": {
"VIP_0": "10.0.7.10:5558"
}
}
]
}
},
"env": {
"LOCUST_MODE": "master",
"LOAD_TEST_URL": "https://mesosphere.com",
"LOCUST_FILE": "https://dl.dropboxusercontent.com/u/1025643/locustfile.py"
},
"healthChecks": [
{
"path": "/",
"protocol": "HTTP",
"portIndex": 0,
"gracePeriodSeconds": 300,
"intervalSeconds": 60,
"timeoutSeconds": 20,
"maxConsecutiveFailures": 3,
"ignoreHttp1xx": false
}
]
}