Bug 2109516
Summary: | [16.2][OVN migration] iptables hybrid OVS-specific leftovers (qbr/qvb/qvo) still exist after VM migration | ||
---|---|---|---|
Product: | Red Hat OpenStack | Reporter: | Roman Safronov <rsafrono> |
Component: | python-networking-ovn | Assignee: | Arnau Verdaguer <averdagu> |
Status: | CLOSED WORKSFORME | QA Contact: | Eran Kuris <ekuris> |
Severity: | high | Docs Contact: | |
Priority: | high | ||
Version: | 16.2 (Train) | CC: | apevec, averdagu, chrisw, ekuris, lhh, majopela, mlavalle, scohen |
Target Milestone: | --- | Keywords: | AutomationBlocker, Triaged |
Target Release: | --- | ||
Hardware: | Unspecified | ||
OS: | Unspecified | ||
Whiteboard: | |||
Fixed In Version: | Doc Type: | If docs needed, set a value | |
Doc Text: | Story Points: | --- | |
Clone Of: | 2106370 | Environment: | |
Last Closed: | 2022-08-08 12:30:21 UTC | Type: | --- |
Regression: | --- | Mount Type: | --- |
Documentation: | --- | CRM: | |
Verified Versions: | Category: | --- | |
oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
Cloudforms Team: | --- | Target Upstream Version: | |
Embargoed: | |||
Bug Depends On: | 2106370 | ||
Bug Blocks: | 2075038, 2075039 |
Description
Roman Safronov
2022-07-21 13:15:39 UTC
According to Slawek (skaplons) VM is not expected to be reconnected with native OVN connection (without qbr bridge) after reboot. But for VM migration scenario the BZ is still relevant. Hello Roman, I've reproduced this environment, create a workload using this script: """ openstack flavor create --disk 1 --ram 128 m1.tiny openstack image create cirros --file cirros.img --disk-format qcow2 --container-format bare --public openstack network create net1 openstack subnet create --subnet-range 192.168.100.0/24 --network net1 subnet1 openstack router create router1 openstack router add subnet router1 subnet1 openstack router set --external-gateway nova router1 openstack security group create secgroup1 openstack security group rule create --protocol tcp --dst-port 22 secgroup1 openstack security group rule create --protocol icmp secgroup1 openstack server create --nic net-id=net1 --flavor m1.tiny --image cirros --security-group secgroup1 server0 openstack floating ip create --port $(openstack port list --server server0 -c id -f value) nova openstack server create --nic net-id=net1 --flavor m1.tiny --image cirros --security-group secgroup1 server1 openstack floating ip create --port $(openstack port list --server server1 -c id -f value) nova openstack server create --nic net-id=net1 --flavor m1.tiny --image cirros --security-group secgroup1 server2 """ Then migrate to OVN, after migrate server1 is on compute-0: server1 | ACTIVE | None | Running | net1=192.168.100.245, 10.0.0.208 | cirros | 70cb9af6-72d3-4058-95f0-86304559ae0a | m1.tiny | nova | compute-0.redhat.local And has the port: (overcloud) [stack@undercloud-0 ovn_migration]$ nova interface-list server1 +------------+--------------------------------------+--------------------------------------+-----------------+-------------------+-----+ | Port State | Port ID | Net ID | IP addresses | MAC Addr | Tag | +------------+--------------------------------------+--------------------------------------+-----------------+-------------------+-----+ | ACTIVE | e540baf8-ff02-490f-906e-772a364bff53 | b96fd417-1d22-40e2-8021-36e10a5f847f | 192.168.100.245 | fa:16:3e:f0:ea:c8 | - | +------------+--------------------------------------+--------------------------------------+-----------------+-------------------+-----+ Which can be found at compute-0: [root@compute-0 heat-admin]# ip -br -c a s | grep e540baf8 qbre540baf8-ff UP fe80::74e9:6eff:fe7a:9f80/64 qvoe540baf8-ff@qvbe540baf8-ff UP fe80::a0fd:a5ff:fe21:9571/64 qvbe540baf8-ff@qvoe540baf8-ff UP fe80::74e9:6eff:fe7a:9f80/64 tape540baf8-ff UNKNOWN fe80::fc16:3eff:fef0:eac8/64 Once the server1 has been migrated: [root@compute-0 heat-admin]# ip -br -c a s | grep e540baf8 [root@compute-0 heat-admin]# ovs-ofctl show br-int | grep e540baf8 [root@compute-0 heat-admin]# [root@compute-1 heat-admin]# ip -br -c a s | grep e540baf8 tape540baf8-ff UNKNOWN fe80::fc16:3eff:fef0:eac8/64 [root@compute-1 heat-admin]# ovs-ofctl show br-int | grep e540baf8 Port tape540baf8-ff Interface tape540baf8-ff Neither on the compute-0 nor compute-1 I can find the leftovers. Hello Roman, I redid the test (this time using a normal VM, as last test, and a trunk VM). Both migrated fine and deleted all associated resources. I've gone through some of the QE 16.2 CI and the problems related to the stale resources are: - FAIL: There are stale ip6tables rules related to id 9df22a10 of vm 8000c5ca-f463-40b0-9925-1a7fa41ea927 on node compute-0 [0] It's true that the ip6tables are not deleted after the migration, will further investigate on that - FAIL: OVS-specific NIC qbrec0d4bf4-d1: related to vm 3d1a2b72-b4aa-4c69-a8c5-d7c67ecaa420 found on compute-1 [1] This test is: test_reboot_vm_with_trunk and as said by slaweq (skaplons) this is expected, so this test should be changed. [0] https://rhos-ci-jenkins.lab.eng.tlv2.redhat.com/view/QE/view/OSP16.2/job/DFG-network-networking-ovn-16.2_director-rhel-virthost-3cont_2comp-ipv4-vxlan-ml2ovs-to-ovn-migration_nodvr-to-nodvr_iptables_fw/10/testReport/ovn_migration_validations/validate-workload-operations/OVN_migration___test_live_migration_vm_with_trunk/ [1] https://rhos-ci-jenkins.lab.eng.tlv2.redhat.com/view/QE/view/OSP16.2/job/DFG-network-networking-ovn-16.2_director-rhel-virthost-3cont_2comp-ipv4-vxlan-ml2ovs-to-ovn-migration_nodvr-to-nodvr_iptables_fw/10/testReport/ovn_migration_validations/validate-workload-operations/OVN_migration___test_reboot_vm_with_trunk/ Verified on RHOS-16.2-RHEL-8-20220804.n.1 Verified that after vm live migration the qbr/qvb/qvo leftovers are deleted. |