summaryrefslogtreecommitdiff
path: root/nova/hacking
diff options
context:
space:
mode:
authorStephen Finucane <sfinucan@redhat.com>2019-12-24 11:06:44 +0000
committerStephen Finucane <sfinucan@redhat.com>2020-01-08 13:53:00 +0000
commit9b321e41f60be5d4111c8312b40c826454386c53 (patch)
treec2a5297a370bc6801fed439bde5c97a9843039a7 /nova/hacking
parent8302cccff658190d145d4411aeb8df12420c987f (diff)
downloadnova-9b321e41f60be5d4111c8312b40c826454386c53.tar.gz
nova-net: Remove firewall support (pt. 3)
Firewall support is not needed with neutron, which supports both security groups for per-port filtering and FWaaS for per-network filtering. Remove both the generic firewalls and the hypervisor-specific implementations. This part focuses on removing the firewall drivers themselves, which are now unused. It also updates the release note to note the two additional config options that are removed here, '[DEFAULT] firewall_driver' and '[DEFAULT] allow_same_net_traffic'. Change-Id: I2dccf1610d6cbbb076fda393f1ef695d0be84b13 Signed-off-by: Stephen Finucane <sfinucan@redhat.com>
Diffstat (limited to 'nova/hacking')
-rw-r--r--nova/hacking/checks.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/nova/hacking/checks.py b/nova/hacking/checks.py
index 51c6f8944e..aad4874634 100644
--- a/nova/hacking/checks.py
+++ b/nova/hacking/checks.py
@@ -212,9 +212,8 @@ def _get_virt_name(regex, data):
return None
driver = m.group(1)
# Ignore things we mis-detect as virt drivers in the regex
- if driver in ["test_virt_drivers", "driver", "firewall",
- "disk", "api", "imagecache", "cpu", "hardware",
- "image"]:
+ if driver in ["test_virt_drivers", "driver", "disk", "api", "imagecache",
+ "cpu", "hardware", "image"]:
return None
return driver