From 3c898cee5781ff15ff936a1d1b6f6833f37cf40f Mon Sep 17 00:00:00 2001 From: Lars Kellogg-Stedman Date: Wed, 1 Apr 2015 11:53:40 -0400 Subject: [PATCH] added "mlnx" to list of supported ml2 mechanism drivers This adds "mlnx" (the mellanox driver) to the list of accepted values for the CONFIG_NEUTRON_ML2_MECHANISM_DRIVERS configuration option. Change-Id: I76023441a65fde4284ad637987666a667319641d Resolves: rhbz#1100142 --- docs/packstack.rst | 2 +- packstack/plugins/neutron_350.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/packstack.rst b/docs/packstack.rst index b5b66e0bd..fbe78da5d 100644 --- a/docs/packstack.rst +++ b/docs/packstack.rst @@ -691,7 +691,7 @@ Neutron ML2 plugin config Comma-separated, ordered list of network types to allocate as tenant networks. The 'local' value is only useful for single-box testing and provides no connectivity between hosts. ['local', 'vlan', 'gre', 'vxlan'] **CONFIG_NEUTRON_ML2_MECHANISM_DRIVERS** - Comma-separated ordered list of networking mechanism driver entry points to be loaded from the neutron.ml2.mechanism_drivers namespace. ['logger', 'test', 'linuxbridge', 'openvswitch', 'hyperv', 'ncs', 'arista', 'cisco_nexus', 'l2population'] + Comma-separated ordered list of networking mechanism driver entry points to be loaded from the neutron.ml2.mechanism_drivers namespace. ['logger', 'test', 'linuxbridge', 'openvswitch', 'hyperv', 'ncs', 'arista', 'cisco_nexus', 'mlnx', 'l2population'] **CONFIG_NEUTRON_ML2_FLAT_NETWORKS** Comma-separated list of physical_network names with which flat networks can be created. Use * to allow flat networks with arbitrary physical_network names. diff --git a/packstack/plugins/neutron_350.py b/packstack/plugins/neutron_350.py index 8219645df..a307e365e 100644 --- a/packstack/plugins/neutron_350.py +++ b/packstack/plugins/neutron_350.py @@ -234,7 +234,7 @@ def initConfig(controller): "mechanism driver entrypoints"), "OPTION_LIST": ["logger", "test", "linuxbridge", "openvswitch", "hyperv", "ncs", "arista", "cisco_nexus", - "l2population"], + "mlnx", "l2population"], "VALIDATORS": [validators.validate_multi_options], "DEFAULT_VALUE": "openvswitch", "MASK_INPUT": False,