The Shared File Systems service architecture defines an abstraction layer for network resource provisioning and allowing administrators to choose from a different options for how network resources are assigned to their tenants’ networked storage. There are a set of network plugins that provide a variety of integration approaches with the network services that are available with OpenStack.
The Shared File Systems service may need a network resource provisioning if share service with specified driver works in mode, when share driver manage life cycle of share servers on its own. This behavior defines by flag driver_handles_share_servers in share service configuration. When driver_handles_share_servers is set to True, a share driver will be called to create share servers for shares using information provided within a share network. This information will be provided to one of the enabled network plugins that will handle reservation, creation and deletion of network resources including IP addresses and network interfaces.
There are three different network plugins and five python classes in Manila:
Network plugin for using the OpenStack networking project Neutron. It allows one to use any network segmentation that Neutron supports. It is up to each share driver to support at least one network segmentation type.
When only a single network is needed, the NeutronSingleNetworkPlugin (1.b) is a simple solution. Otherwise NeutronNetworkPlugin (1.a) should be chosen.
Network plugin for working with OpenStack networking from Nova. It supports either flat networks or VLAN-segmented networks.
When only a single network is needed, the NovaSingleNetworkPlugin (2.b) is a simple solution. Otherwise NovaNetworkPlugin (1.a) should be chosen.
Network plugin for specifying networks independently from OpenStack networking services.
Note
These network plugins were introduced in the OpenStack Kilo release. In the OpenStack Juno version, only NeutronNetworkPlugin is available.
More information about network plugins can be found in Manila developer documentation
Except where otherwise noted, this document is licensed under Creative Commons Attribution 3.0 License http://creativecommons.org/licenses/by/3.0/legalcode.