Added the ability to disable Mellanox SDN sync

Added the ability to disable Mellanox SDN sync by using param `MlnxSDNSyncEnabled`
from file `neutron-ml2-mlnx-sdn.yaml`

Change-Id: Id93a8637980276298c2b7d3f6d1e7c30f1c413be
This commit is contained in:
Hamdy Khader 2019-11-07 14:55:10 +02:00
parent 8fad46f0d3
commit ccf3f0b586
2 changed files with 5 additions and 0 deletions

View File

@ -48,6 +48,9 @@ parameters:
description: SDN server domain
type: string
default: 'cloudx'
MlnxSDNSyncEnabled:
type: boolean
default: true
MultiInterfaceEnabled:
type: boolean
default: false
@ -83,6 +86,7 @@ outputs:
neutron::plugins::ml2::mellanox::mlnx_sdn_assist::sdn_password: {get_param: MlnxSDNPassword}
neutron::plugins::ml2::mellanox::mlnx_sdn_assist::sdn_url: {get_param: MlnxSDNUrl}
neutron::plugins::ml2::mellanox::mlnx_sdn_assist::sdn_domain: {get_param: MlnxSDNDomain}
neutron::plugins::ml2::mellanox::mlnx_sdn_assist::sync_enabled: {get_param: MlnxSDNSyncEnabled}
-
if:
- multi_interface_enabled

View File

@ -9,6 +9,7 @@ parameter_defaults:
#MlnxSDNPassword:
MlnxSDNUrl: 'sdn_url'
MlnxSDNDomain: 'cloudx'
MlnxSDNSyncEnabled: true
NeutronCorePlugin: 'neutron.plugins.ml2.plugin.Ml2Plugin'
NeutronMechanismDrivers: ['mlnx_sdn_assist','sriovnicswitch','openvswitch']