[ovn]: Enable port forwarding in neutron service plugins

NeutronServicePlugins needs to include port_forwarding in order to support
the floating ip port forwarding functionality.

Depends-On: https://review.opendev.org/#/c/741303/
Change-Id: I27ac0a536624f5461809df771a58a6e57fec0661
Closes-Bug: #1877447
Signed-off-by: Flavio Fernandes <flaviof@redhat.com>
This commit is contained in:
Flavio Fernandes 2020-08-11 18:23:30 -04:00 committed by Flavio Fernandes
parent 642fa3d113
commit 40fa5244c2
6 changed files with 11 additions and 5 deletions

View File

@ -21,7 +21,7 @@ parameter_defaults:
OVNQosDriver: ovn-qos
NeutronTypeDrivers: 'geneve,vlan,flat'
NeutronNetworkType: 'geneve'
NeutronServicePlugins: 'qos,ovn-router,trunk,segments'
NeutronServicePlugins: 'qos,ovn-router,trunk,segments,port_forwarding'
NeutronVniRanges: ['1:65536', ]
NeutronEnableDVR: true
NeutronPluginExtensions: "qos,port_security,dns"

View File

@ -20,7 +20,7 @@ parameter_defaults:
OVNQosDriver: ovn-qos
NeutronTypeDrivers: 'geneve,vlan,flat'
NeutronNetworkType: 'geneve'
NeutronServicePlugins: 'qos,ovn-router,trunk,segments'
NeutronServicePlugins: 'qos,ovn-router,trunk,segments,port_forwarding'
NeutronVniRanges: ['1:65536', ]
NeutronPluginExtensions: "qos,port_security,dns"
ComputeParameters:

View File

@ -22,7 +22,7 @@ parameter_defaults:
OVNQosDriver: ovn-qos
NeutronTypeDrivers: 'geneve,vlan,flat'
NeutronNetworkType: ['geneve' , 'vlan', 'flat']
NeutronServicePlugins: 'qos,ovn-router,trunk,segments'
NeutronServicePlugins: 'qos,ovn-router,trunk,segments,port_forwarding'
NeutronVniRanges: ['1:65536', ]
NeutronRpcWorkers: 1
NeutronEnableDVR: true

View File

@ -20,7 +20,7 @@ parameter_defaults:
OVNQosDriver: ovn-qos
NeutronTypeDrivers: 'geneve,vlan,flat'
NeutronNetworkType: ['geneve' , 'vlan', 'flat']
NeutronServicePlugins: 'qos,ovn-router,trunk,segments'
NeutronServicePlugins: 'qos,ovn-router,trunk,segments,port_forwarding'
NeutronVniRanges: ['1:65536', ]
NeutronPluginExtensions: "qos,port_security,dns"
NeutronRpcWorkers: 1

View File

@ -22,7 +22,7 @@ parameter_defaults:
OVNQosDriver: ovn-qos
NeutronTypeDrivers: 'geneve,vlan,flat'
NeutronNetworkType: ['geneve' , 'vlan', 'flat']
NeutronServicePlugins: 'qos,ovn-router,trunk,segments'
NeutronServicePlugins: 'qos,ovn-router,trunk,segments,port_forwarding'
NeutronVniRanges: ['1:65536', ]
NeutronRpcWorkers: 1
NeutronEnableDVR: true

View File

@ -0,0 +1,6 @@
---
features:
- |
Floating IP port forwarding is now supported under ML2/OVN. A more detailed
explanation can be found in
bug `1877447 <https://bugs.launchpad.net/neutron/+bug/1877447>`_.