Add param to configure snat mechanism
Add a parameter to configure SNAT mechanism in OpenDayLight defaulting to conntrack for OVS and defaulting to controller mechanism for OVS-DPDK Change-Id: I48c6f07de55cb2574cc3a7e9653b812f875df726 Closes-Bug: #1710614
This commit is contained in:
parent
4dabd2c487
commit
9a450a8e50
@ -12,6 +12,7 @@ parameter_defaults:
|
|||||||
NeutronMechanismDrivers: 'opendaylight_v2'
|
NeutronMechanismDrivers: 'opendaylight_v2'
|
||||||
NeutronServicePlugins: 'odl-router_v2'
|
NeutronServicePlugins: 'odl-router_v2'
|
||||||
NovaSchedulerDefaultFilters: "RamFilter,ComputeFilter,AvailabilityZoneFilter,ComputeCapabilitiesFilter,ImagePropertiesFilter,NUMATopologyFilter"
|
NovaSchedulerDefaultFilters: "RamFilter,ComputeFilter,AvailabilityZoneFilter,ComputeCapabilitiesFilter,ImagePropertiesFilter,NUMATopologyFilter"
|
||||||
|
OpenDaylightSNATMechanism: 'controller'
|
||||||
|
|
||||||
ComputeOvsDpdkParameters:
|
ComputeOvsDpdkParameters:
|
||||||
OvsEnableDpdk: True
|
OvsEnableDpdk: True
|
||||||
|
@ -62,6 +62,14 @@ parameters:
|
|||||||
description: Whether to manage the OpenDaylight repository
|
description: Whether to manage the OpenDaylight repository
|
||||||
type: boolean
|
type: boolean
|
||||||
default: false
|
default: false
|
||||||
|
OpenDaylightSNATMechanism:
|
||||||
|
description: SNAT mechanism to be used
|
||||||
|
default: 'conntrack'
|
||||||
|
type: string
|
||||||
|
constraints:
|
||||||
|
- allowed_values:
|
||||||
|
- conntrack
|
||||||
|
- controller
|
||||||
|
|
||||||
outputs:
|
outputs:
|
||||||
role_data:
|
role_data:
|
||||||
@ -84,6 +92,7 @@ outputs:
|
|||||||
- 6640
|
- 6640
|
||||||
- 6653
|
- 6653
|
||||||
- 2550
|
- 2550
|
||||||
|
opendaylight::snat_mechanism: {get_param: OpenDaylightSNATMechanism}
|
||||||
step_config: |
|
step_config: |
|
||||||
include tripleo::profile::base::neutron::opendaylight
|
include tripleo::profile::base::neutron::opendaylight
|
||||||
upgrade_tasks:
|
upgrade_tasks:
|
||||||
|
@ -0,0 +1,5 @@
|
|||||||
|
---
|
||||||
|
features:
|
||||||
|
- |
|
||||||
|
Configure OpenDaylight SNAT to use conntrack mechanism with OVS and controller
|
||||||
|
based mechanism with OVS-DPDK.
|
Loading…
Reference in New Issue
Block a user