Remove redundant br-int check

On podified environment there is no more br-int bridge.
Also the check is redundant since the option is available by default.

Change-Id: I07612ceae6a3892eb8fb3a68fa541672139d9c81
This commit is contained in:
Roman Safronov 2024-04-30 12:56:11 +03:00
parent 04bb1ca93b
commit 648a97e062
2 changed files with 0 additions and 10 deletions

View File

@ -119,9 +119,6 @@ WhiteboxNeutronPluginOptions = [
cfg.StrOpt('ml2_plugin_config',
default='/etc/neutron/plugins/ml2/ml2_conf.ini',
help='Path to ml2 plugin config.'),
cfg.StrOpt('node_integration_bridge',
default='br-int',
help="OpenvSwitch bridge dedicated for OVN's use."),
cfg.StrOpt('ext_bridge',
default='{"default": "br-ex", "alt": "ospbr"}',
help="Bridge dedicated for external network. Dict with values "

View File

@ -119,13 +119,6 @@ class GatewayMtuTest(base.TrafficFlowTest):
def _validate_environment_config(self):
msg = "ovn_emit_need_to_frag is not set to 'true' in config file"
for node in self.nodes:
result = node['client'].exec_command(
"sudo ovs-appctl -t ovs-vswitchd dpif/show-dp-features {} | "
"grep 'Check pkt'".format(
WB_CONF.node_integration_bridge))
if 'Yes' not in result:
raise self.skipException(
"Path MTU discovery is not supported")
if WB_CONF.openstack_type == 'devstack':
if node['is_controller'] is False:
continue