From 6d808cc6a7e36f220e5a80b774abd215b8ac4c54 Mon Sep 17 00:00:00 2001 From: Jakub Libosvar Date: Mon, 2 May 2016 17:35:49 +0200 Subject: [PATCH] fullstack: Use noop firewall Currently fullstack tests don't use hybrid plugging but they use hybrid firewall by default. Using iptables is not segregated and OVS agents running in parallel may interfere between each other. This patch removes using iptables in ovs agents per created port. Change-Id: Ic15c942360a4a6ecf0eb5d8ecbbc54e59b10431d Closes-Bug: #1575033 (cherry picked from commit 77456735cbc9066dda8186937cb6ee2073833123) --- neutron/tests/fullstack/resources/config.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/neutron/tests/fullstack/resources/config.py b/neutron/tests/fullstack/resources/config.py index c20d24087bf..93153330d97 100644 --- a/neutron/tests/fullstack/resources/config.py +++ b/neutron/tests/fullstack/resources/config.py @@ -201,8 +201,7 @@ class OVSConfigFixture(ConfigFixture): 'integration_bridge': self._generate_integration_bridge(), }, 'securitygroup': { - 'firewall_driver': ('neutron.agent.linux.iptables_firewall.' - 'OVSHybridIptablesFirewallDriver'), + 'firewall_driver': 'noop', }, 'agent': { 'l2_population': str(self.env_desc.l2_pop),