From ea29fb51cd33c820a7c0118650928d52dbfb35b5 Mon Sep 17 00:00:00 2001 From: Todd Malsbary Date: Tue, 27 Apr 2021 14:16:15 -0700 Subject: [PATCH] Add SR-IOV NIC to nodes.json sample Signed-off-by: Todd Malsbary Change-Id: I30af45ce3cb08aa3d685eb41bcfc1a9a20d4c53a --- README.md | 22 ++++++++++++++++++++++ deploy/metal3/scripts/nodes.json.sample | 22 ++++++++++++++++++++++ 2 files changed, 44 insertions(+) diff --git a/README.md b/README.md index b833ff3..d49ba45 100644 --- a/README.md +++ b/README.md @@ -169,6 +169,11 @@ ICN provides DHCP servers for the provisioning and bootstrap networks. "id": "bootstrap_nic", "ethernet_mac_address": "00:1e:67:f8:6a:40", "type": "phy" + }, + { + "id": "sriov_nic", + "ethernet_mac_address": "00:1e:67:f8:6a:41", + "type": "phy" } ], "networks": [ @@ -189,6 +194,12 @@ ICN provides DHCP servers for the provisioning and bootstrap networks. "id": "bootstrap", "link": "bootstrap_nic", "type": "ipv4_dhcp" + }, + { + "id": "sriov", + "link": "sriov_nic", + "type": "ipv4", + "ip_address": "10.10.113.2/24" } ], "services": [] @@ -222,6 +233,11 @@ ICN provides DHCP servers for the provisioning and bootstrap networks. "id": "provisioning_nic", "ethernet_mac_address": "00:1e:67:f1:5b:91", "type": "phy" + }, + { + "id": "sriov_nic", + "ethernet_mac_address": "00:1e:67:f8:69:81", + "type": "phy" } ], "networks": [ @@ -242,6 +258,12 @@ ICN provides DHCP servers for the provisioning and bootstrap networks. "id": "bootstrap", "link": "bootstrap_nic", "type": "ipv4_dhcp" + }, + { + "id": "sriov", + "link": "sriov_nic", + "type": "ipv4", + "ip_address": "10.10.113.3/24" } ], "services": [] diff --git a/deploy/metal3/scripts/nodes.json.sample b/deploy/metal3/scripts/nodes.json.sample index a451e49..faaabfb 100644 --- a/deploy/metal3/scripts/nodes.json.sample +++ b/deploy/metal3/scripts/nodes.json.sample @@ -28,6 +28,11 @@ "id": "provisioning_nic", "ethernet_mac_address": "00:1e:67:fe:f4:1a", "type": "phy" + }, + { + "id": "sriov_nic", + "ethernet_mac_address": "00:1e:67:f8:6a:41", + "type": "phy" } ], "networks": [ @@ -48,6 +53,12 @@ "id": "bootstrap", "link": "bootstrap_nic", "type": "ipv4_dhcp" + }, + { + "id": "sriov", + "link": "sriov_nic", + "type": "ipv4", + "ip_address": "10.10.113.3/24" } ], "services": [] @@ -81,6 +92,11 @@ "id": "provisioning_nic", "ethernet_mac_address": "00:1e:67:f1:5b:91", "type": "phy" + }, + { + "id": "sriov_nic", + "ethernet_mac_address": "00:1e:67:f8:69:81", + "type": "phy" } ], "networks": [ @@ -101,6 +117,12 @@ "id": "bootstrap", "link": "bootstrap_nic", "type": "ipv4_dhcp" + }, + { + "id": "sriov", + "link": "sriov_nic", + "type": "ipv4", + "ip_address": "10.10.113.4/24" } ], "services": [] -- 2.16.6