]> review.fuel-infra Code Review - openstack-build/neutron-build.git/commitdiff
VMware: update supported plugins
authorGary Kotton <gkotton@vmware.com>
Thu, 7 May 2015 05:49:17 +0000 (22:49 -0700)
committerGary Kotton <gkotton@vmware.com>
Thu, 7 May 2015 05:49:17 +0000 (22:49 -0700)
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

index c4efeb22001987c5f1a4b5cc5ffe329595e9e3ba..c841d15594a07a1c6be5979958d03770afe3a214 100644 (file)
 #
 
 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