2
0
mirror of https://github.com/openvswitch/ovs synced 2025-10-27 15:18:06 +00:00

ovn: add extra check on distributed gateway ports

Check that removing the options:redirect-chassis in NBDB is
going to remove the cr-${port} in the SBDB.

This is introduced to avoid any regression of this behaviour
on the l3ha series.

Signed-off-by: Miguel Angel Ajo <majopela@redhat.com>
Signed-off-by: Russell Bryant <russell@ovn.org>
This commit is contained in:
majopela@redhat.com
2017-07-13 17:02:34 +00:00
committed by Russell Bryant
parent fa792e4f62
commit 415ed5d780

View File

@@ -7142,6 +7142,14 @@ expected=${dst_mac}${src_mac}08004500001c000000003f110100${src_ip}${dst_ip}00351
echo $expected >> hv2-vif1.expected
OVN_CHECK_PACKETS([hv2/vif1-tx.pcap], [hv2-vif1.expected])
AT_CHECK([ovn-sbctl --bare --columns _uuid find Port_Binding logical_port=cr-alice | wc --lines], [0], [1
])
ovn-nbctl --wait=sb remove Logical_Router_Port alice options redirect-chassis
AT_CHECK([ovn-sbctl find Port_Binding logical_port=cr-alice | wc --lines], [0], [0
])
OVN_CLEANUP([hv1],[hv2],[hv3])
AT_CLEANUP