From: Gary Kotton Date: Thu, 7 May 2015 05:49:17 +0000 (-0700) Subject: VMware: update supported plugins X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=5099c884c6b09ad0979a560648e8806eaa4642f7;p=openstack-build%2Fneutron-build.git 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 --- 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