Enable port_security by default

Neutron recommend as good practice to enable port_security
extension by default. Current networks will remain using
security groups, but will allow users to disable port_security
in their port or networks.
An example use case is nfv.

Change-Id: I69f2e3567fd00695cf1c4bcc9177c2b88e33c3ab
This commit is contained in:
Eduardo Gonzalez 2017-06-19 14:09:32 +02:00
parent 1529d4e54e
commit 112d632640
2 changed files with 5 additions and 1 deletions

View File

@ -254,7 +254,7 @@ extension_drivers:
- name: "qos"
enabled: "{{ enable_neutron_qos | bool }}"
- name: "port_security"
enabled: "{{ enable_tacker | bool or enable_designate | bool }}"
enabled: true
- name: "dns"
enabled: "{{ enable_designate | bool }}"

View File

@ -0,0 +1,4 @@
---
features:
- |
Neutron port_security extension driver is enabled by default.