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>
(cherry picked from commit 186b03d720)
This commit is contained in:
Tim Rozet 2018-04-09 14:54:48 -04:00
parent a39634aae3
commit ba7e1b578f
2 changed files with 7 additions and 1 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:

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