-
Notifications
You must be signed in to change notification settings - Fork 0
/
example_cluster.json
59 lines (59 loc) · 1.34 KB
/
example_cluster.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
{
"master": {
"nodeName": "node0",
"CPU": 16,
"IP": "10.0.1.1",
"PCIe": [],
"switchPort": "1"
},
"workers": [
{
"nodeName": "node1",
"IP": "10.0.1.2",
"CPU": 16,
"PCIe": [
"06:00.0",
"06:00.2",
"06:00.4",
"06:00.6",
"06:01.0",
"06:01.2",
"06:01.4",
"06:01.6",
"06:02.0",
"06:02.2",
"06:02.4",
"06:02.6",
"06:03.0",
"06:03.2",
"06:03.4",
"06:03.6"
],
"switchPort": 2
},
{
"nodeName": "node2",
"IP": "10.0.1.3",
"CPU": 16,
"PCIe": [
"06:00.0",
"06:00.2",
"06:00.4",
"06:00.6",
"06:01.0",
"06:01.2",
"06:01.4",
"06:01.6",
"06:02.0",
"06:02.2",
"06:02.4",
"06:02.6",
"06:03.0",
"06:03.2",
"06:03.4",
"06:03.6"
],
"switchPort": 3
}
]
}