From 5099c884c6b09ad0979a560648e8806eaa4642f7 Mon Sep 17 00:00:00 2001 From: Gary Kotton Date: Wed, 6 May 2015 22:49:17 -0700 Subject: [PATCH] VMware: update supported plugins Add all of the supported plugins to the VMware plugin.py file. The supported plugins are: - NSX MH - NSXv - Simple DVS (this does not support security groups and any layer functionality). Useful for testing of Neutron with VC. Change-Id: I9e5c779127ff44674cb60f3c19d4b5c8bdae6101 --- neutron/plugins/vmware/plugin.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/neutron/plugins/vmware/plugin.py b/neutron/plugins/vmware/plugin.py index c4efeb220..c841d1559 100644 --- a/neutron/plugins/vmware/plugin.py +++ b/neutron/plugins/vmware/plugin.py @@ -16,8 +16,12 @@ # from vmware_nsx.neutron.plugins.vmware.plugins import base as nsx_mh +from vmware_nsx.neutron.plugins.vmware.plugins import dvs +from vmware_nsx.neutron.plugins.vmware.plugins import nsx_v NsxMhPlugin = nsx_mh.NsxPluginV2 # The 'NsxPlugin' name will be deprecated in Liberty # and replaced by the 'NsxMhPlugin' name NsxPlugin = NsxMhPlugin +NsxVPlugin = nsx_v.NsxVPluginV2 +NsxDvsPlugin = dvs.NsxDvsV2 -- 2.45.2