Merge "Add NeutronOverlayIPVersion parameter to neutron-plugins-ml2 service"

This commit is contained in:
Jenkins 2017-08-16 19:46:32 +00:00 committed by Gerrit Code Review
commit 7a9718c385
2 changed files with 12 additions and 0 deletions

View File

@ -76,6 +76,12 @@ parameters:
description: Firewall driver for realizing neutron security group function
type: string
default: 'openvswitch'
NeutronOverlayIPVersion:
default: 4
description: IP version used for all overlay network endpoints.
type: number
constraints:
- allowed_values: [4,6]
resources:
NeutronBase:
@ -105,6 +111,7 @@ outputs:
neutron::plugins::ml2::vni_ranges: {get_param: NeutronVniRanges}
neutron::plugins::ml2::tenant_network_types: {get_param: NeutronNetworkType}
neutron::plugins::ml2::firewall_driver: {get_param: NeutronFirewallDriver}
neutron::plugins::ml2::overlay_ip_version: {get_param: NeutronOverlayIPVersion}
step_config: |
include ::tripleo::profile::base::neutron::plugins::ml2

View File

@ -0,0 +1,5 @@
---
features:
- Add NeutronOverlayIPVersion parameter to congfigure neutron ML2
overlay_ip_version option. This parameter should be set to 6 when user
requires tenant vxlan tunnel endpoints to be IPv6.