Merge "Add param to configure snat mechanism"

This commit is contained in:
Jenkins 2017-09-06 10:23:30 +00:00 committed by Gerrit Code Review
commit f014d5a63d
3 changed files with 15 additions and 0 deletions

View File

@ -12,6 +12,7 @@ parameter_defaults:
NeutronMechanismDrivers: 'opendaylight_v2'
NeutronServicePlugins: 'odl-router_v2'
NovaSchedulerDefaultFilters: "RamFilter,ComputeFilter,AvailabilityZoneFilter,ComputeCapabilitiesFilter,ImagePropertiesFilter,NUMATopologyFilter"
OpenDaylightSNATMechanism: 'controller'
ComputeOvsDpdkParameters:
OvsEnableDpdk: True

View File

@ -62,6 +62,14 @@ parameters:
description: Whether to manage the OpenDaylight repository
type: boolean
default: false
OpenDaylightSNATMechanism:
description: SNAT mechanism to be used
default: 'conntrack'
type: string
constraints:
- allowed_values:
- conntrack
- controller
outputs:
role_data:
@ -84,6 +92,7 @@ outputs:
- 6640
- 6653
- 2550
opendaylight::snat_mechanism: {get_param: OpenDaylightSNATMechanism}
step_config: |
include tripleo::profile::base::neutron::opendaylight
upgrade_tasks:

View File

@ -0,0 +1,5 @@
---
features:
- |
Configure OpenDaylight SNAT to use conntrack mechanism with OVS and controller
based mechanism with OVS-DPDK.