[sig-network] SRIOV nic-hotplug a running VM can hotplug a network interface |
tests/network/hotplug_sriov.go:107
Timed out after 30.001s.
Expected
<[]v1.VirtualMachineInstanceNetworkInterface | len:1, cap:1>: [
{
IP: "",
MAC: "",
Name: "iface1",
IPs: nil,
PodInterfaceName: "pod7e0055a6880",
InterfaceName: "",
InfoSource: "domain, multus-status",
QueueCount: 0,
LinkState: "",
},
]
to consist of
<[]v1.VirtualMachineInstanceNetworkInterface | len:1, cap:1>: [
{
IP: "",
MAC: "",
Name: "iface1",
IPs: nil,
PodInterfaceName: "pod7e0055a6880",
InterfaceName: "eth1",
InfoSource: "domain, guest-agent, multus-status",
QueueCount: 0,
LinkState: "",
},
]
the missing elements were
<[]v1.VirtualMachineInstanceNetworkInterface | len:1, cap:1>: [
{
IP: "",
MAC: "",
Name: "iface1",
IPs: nil,
PodInterfaceName: "pod7e0055a6880",
InterfaceName: "eth1",
InfoSource: "domain, guest-agent, multus-status",
QueueCount: 0,
LinkState: "",
},
]
the extra elements were
<[]v1.VirtualMachineInstanceNetworkInterface | len:1, cap:1>: [
{
IP: "",
MAC: "",
Name: "iface1",
IPs: nil,
PodInterfaceName: "pod7e0055a6880",
InterfaceName: "",
InfoSource: "domain, multus-status",
QueueCount: 0,
LinkState: "",
},
]
tests/network/hotplug_sriov.go:193
|