Fix missing allowed network type 'flat' for ODL OVS

The 'flat' network type was missing from the default allowed network
types with OpenDaylight deployments.  This is OVS configuration which
detemrines which tenant network types are supported on a per node basis.
By default, flat should be allowed.

Closes-Bug: 1762495

Change-Id: Idf626948ee46a88f95f020fc12b7cd8b04db8be6
Signed-off-by: Tim Rozet <trozet@redhat.com>
This commit is contained in:
Tim Rozet 2018-04-09 14:54:48 -04:00
parent 2ec5bd01dc
commit 186b03d720
2 changed files with 8 additions and 2 deletions

View File

@ -40,7 +40,7 @@ parameters:
vary per host or role to constrain which hosts nova instances
and networks are scheduled to.
type: comma_delimited_list
default: ['local', 'vlan', 'vxlan', 'gre']
default: ['local', 'flat', 'vlan', 'vxlan', 'gre']
tags:
- role_specific
OvsEnableDpdk:
@ -323,4 +323,4 @@ outputs:
- service: ovs
network: {get_param: [ServiceNetMap, OpendaylightApiNetwork]}
type: node
- null
- null

View File

@ -0,0 +1,6 @@
---
fixes:
- |
Fixes missing type "flat" from the default allowed network types for
the ODL OVS parameter HostAllowedNetworkTypes. See
https://bugs.launchpad.net/tripleo/+bug/1762495