Add SR-IOV NIC to nodes.json sample
[icn.git] / deploy / metal3 / scripts / nodes.json.sample
1 {
2   "nodes": [
3     {
4       "name": "pod11-node2",
5       "ipmi_driver_info": {
6         "username": "root",
7         "password": "root",
8         "address": "10.10.110.12"
9       },
10       "os": {
11         "image_name": "bionic-server-cloudimg-amd64.img",
12         "username": "ubuntu",
13         "password": "mypasswd"
14       },
15       "net": {
16         "links": [
17           {
18             "id": "baremetal_nic",
19             "ethernet_mac_address": "00:1e:67:fe:f4:19",
20             "type": "phy"
21           },
22           {
23             "id": "bootstrap_nic",
24             "ethernet_mac_address": "00:1e:67:f8:6a:40",
25             "type": "phy"
26           },
27           {
28             "id": "provisioning_nic",
29             "ethernet_mac_address": "00:1e:67:fe:f4:1a",
30             "type": "phy"
31           },
32           {
33             "id": "sriov_nic",
34             "ethernet_mac_address": "00:1e:67:f8:6a:41",
35             "type": "phy"
36           }
37         ],
38         "networks": [
39           {
40             "id": "baremetal",
41             "link": "baremetal_nic",
42             "type": "ipv4",
43             "ip_address": "10.10.110.22/24",
44             "gateway": "10.10.110.1",
45             "dns_nameservers": ["8.8.8.8"]
46           },
47           {
48             "id": "provisioning",
49             "link": "provisioning_nic",
50             "type": "ipv4_dhcp"
51           },
52           {
53             "id": "bootstrap",
54             "link": "bootstrap_nic",
55             "type": "ipv4_dhcp"
56           },
57           {
58             "id": "sriov",
59             "link": "sriov_nic",
60             "type": "ipv4",
61             "ip_address": "10.10.113.3/24"
62           }
63         ],
64         "services": []
65       }
66     },
67      {
68       "name": "pod11-node3",
69       "ipmi_driver_info": {
70         "username": "root",
71         "password": "root",
72         "address": "10.10.110.13"
73       },
74       "os": {
75         "image_name": "bionic-server-cloudimg-amd64.img",
76         "username": "ubuntu",
77         "password": "mypasswd"
78       },
79       "net": {
80         "links": [
81           {
82             "id": "baremetal_nic",
83             "ethernet_mac_address": "00:1e:67:f1:5b:90",
84             "type": "phy"
85           },
86           {
87             "id": "bootstrap_nic",
88             "ethernet_mac_address": "00:1e:67:f8:69:80",
89             "type": "phy"
90           },
91           {
92             "id": "provisioning_nic",
93             "ethernet_mac_address": "00:1e:67:f1:5b:91",
94             "type": "phy"
95           },
96           {
97             "id": "sriov_nic",
98             "ethernet_mac_address": "00:1e:67:f8:69:81",
99             "type": "phy"
100           }
101         ],
102         "networks": [
103           {
104             "id": "baremetal",
105             "link": "baremetal_nic",
106             "type": "ipv4",
107             "ip_address": "10.10.110.203/24",
108             "gateway": "10.10.110.1",
109             "dns_nameservers": ["8.8.8.8"]
110           },
111           {
112             "id": "provisioning",
113             "link": "provisioning_nic",
114             "type": "ipv4_dhcp"
115           },
116           {
117             "id": "bootstrap",
118             "link": "bootstrap_nic",
119             "type": "ipv4_dhcp"
120           },
121           {
122             "id": "sriov",
123             "link": "sriov_nic",
124             "type": "ipv4",
125             "ip_address": "10.10.113.4/24"
126           }
127         ],
128         "services": []
129       }
130     }
131   ]
132 }