Merge "Fixes missing 'flat' network type for ODL OVS"
This commit is contained in:
commit
fc31ad245d
@ -47,8 +47,8 @@
|
||||
# The value 'local' is only useful for single-box testing
|
||||
# but provides no connectivity between hosts.
|
||||
# Should be an array that can have these elements:
|
||||
# local, vlan, gre, vxlan
|
||||
# Defaults to ['local', 'vlan', 'gre', 'vxlan']
|
||||
# local, flat, vlan, gre, vxlan
|
||||
# Defaults to ['local', 'flat', 'vlan', 'gre', 'vxlan']
|
||||
#
|
||||
# [*enable_dpdk*]
|
||||
# (optional) Enables vhostuser VIF host configuration for OVS DPDK.
|
||||
@ -98,7 +98,7 @@ class neutron::plugins::ovs::opendaylight (
|
||||
$retry_interval = 60,
|
||||
$retry_count = 20,
|
||||
$host_id = $fqdn,
|
||||
$allowed_network_types = ['local', 'vlan', 'vxlan', 'gre'],
|
||||
$allowed_network_types = ['local', 'flat', 'vlan', 'vxlan', 'gre'],
|
||||
$enable_dpdk = false,
|
||||
$vhostuser_socket_dir = '/var/run/openvswitch',
|
||||
$vhostuser_mode = 'server',
|
||||
|
@ -0,0 +1,5 @@
|
||||
---
|
||||
fixes:
|
||||
- |
|
||||
Fixes missing "flat" network type in the allowed network types for
|
||||
OpenDaylight OVS.
|
@ -11,7 +11,7 @@ describe 'neutron::plugins::ovs::opendaylight' do
|
||||
:retry_interval => 60,
|
||||
:retry_count => 20,
|
||||
:host_id => "dummy_host",
|
||||
:allowed_network_types => ['local', 'vlan', 'vxlan', 'gre'],
|
||||
:allowed_network_types => ['local', 'flat', 'vlan', 'vxlan', 'gre'],
|
||||
:enable_dpdk => false,
|
||||
:vhostuser_socket_dir => '/var/run/openvswitch',
|
||||
:vhostuser_mode => 'server',
|
||||
|
Loading…
Reference in New Issue
Block a user