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
This commit is contained in:
Gary Kotton 2015-05-06 22:49:17 -07:00
parent 48c336e450
commit 5099c884c6
1 changed files with 4 additions and 0 deletions

View File

@ -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