forked from CCI-MOC/hil
-
Notifications
You must be signed in to change notification settings - Fork 3
/
site-layout.json
51 lines (51 loc) · 1.32 KB
/
site-layout.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
{
"switches": [
{
"switch": "dell-0",
"type": "http://schema.massopencloud.org/haas/v0/switches/powerconnect55xx",
"hostname": "dell-0.example.com",
"username": "alice",
"password": "secret"
}
],
"nodes" : [
{
"name": "node-1",
"nics": [
{
"name": "nic1",
"mac" : "de:ad:be:ef:20:14",
"port": "gi1/0/1",
"switch": "dell-0"
},
{
"name": "nic2",
"mac" : "de:ad:be:ef:20:15",
"port": "gi1/0/2",
"switch": "dell-1"
}
],
"ipmi": {
"host": "192.168.1.1",
"user": "foo",
"pass": "bar"
}
},
{
"name": "node-2",
"nics": [
{
"name": "nic1",
"mac" : "de:ad:be:ef:20:16",
"port": "gi1/0/3",
"switch": "dell-1"
}
],
"ipmi": {
"host": "192.168.1.2",
"user": "foo",
"pass": "bar"
}
}
]
}