<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>https://wiki.openstack.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=DougW</id>
		<title>OpenStack - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="https://wiki.openstack.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=DougW"/>
		<link rel="alternate" type="text/html" href="https://wiki.openstack.org/wiki/Special:Contributions/DougW"/>
		<updated>2026-07-12T08:26:07Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.28.2</generator>

	<entry>
		<id>https://wiki.openstack.org/w/index.php?title=Manila/Manila_Storage_Integration_Patterns&amp;diff=28618</id>
		<title>Manila/Manila Storage Integration Patterns</title>
		<link rel="alternate" type="text/html" href="https://wiki.openstack.org/w/index.php?title=Manila/Manila_Storage_Integration_Patterns&amp;diff=28618"/>
				<updated>2013-08-22T19:31:46Z</updated>
		
		<summary type="html">&lt;p&gt;DougW: /* Overview */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== Overview ==&lt;br /&gt;
The mechanism in which NAS storage integrates with the a Nova instance depends on the capabilities of storage technologies.  Integration can be roughly styles of access:&lt;br /&gt;
* '''Direct IP access''', for small/flat networks. The storage backend exports the share directly to the IP of the VM or client, and the network plumbing is assumed to be taken care of. This is the simplest to implement and has already been implemented. The major shortcoming is the lack of network segmentation in a multi-tenant environment.&lt;br /&gt;
* '''Hypervisor-mediated access'''. The storage backend exports the share to the compute node where the hypervisor is running, and the hypervisor is responsible for exposing it to the VM through some kind of tunnel in a secure way. Potential approaches:&lt;br /&gt;
** Pass-thru filesystem:  NAS storage is mounted by Nova host, then a hypervisor-specific pass-through filesystem such as VirtFS is used tunnel a tenant sub-tree of the ANS volume into the guest.  In this vase the passthru filesystem is responsible for patting from tenant to provider name-spaces and providing secure access.  Depending on the passthru filesystem, and special driver will be required in the guest to mount the pass-thru filesystem&lt;br /&gt;
** Hyper-resident agent:  Hypervisor resident agent exposes per-tenant NAS server, responsible for presenting only those Manila volumes attached to the Nova guest.  This can be accomplished by placing a portion of the top of the NAS storage stack within Nova host (appropriate for for software defined storage technologies such as Glusterfs), of placing a proxy agent connected to the back-end storage pool.    Storage can be exposed via NFS, SMB or the storage technologies native protocol.  Connectivity between hypervisor agent and Nova guest can be accomplished virtual network or VSock.&lt;br /&gt;
* '''Neutron-mediated access'''. The storage backend is required to support logical networks, such as VLANs or SDNs. The storage backend exports the share directly to the IP of the VM or client, but only on the logical network the client is part of. Quantum must be able to talk to storage backends and connect them into its networking model. This would probably involve some new kind of Neutron plugin or new Neutron APIs that the Shared Filesystem Service could consume to coordinate the plumbing operation. For storage backends that don’t support logical networks a gateway could sit in front of the storage and provide the feature.&lt;br /&gt;
&lt;br /&gt;
Note:  Above text based on email exchanges between Ben Swartzlander and Doug Williams&lt;br /&gt;
&lt;br /&gt;
== Direct IP Access ==&lt;br /&gt;
&lt;br /&gt;
=== Integration Details ===&lt;br /&gt;
&lt;br /&gt;
=== Storage Requirements ===&lt;br /&gt;
&lt;br /&gt;
=== Manila Requirements ===&lt;br /&gt;
&lt;br /&gt;
== Hypervisor Mediated Access ==&lt;br /&gt;
&lt;br /&gt;
=== Integration Details ===&lt;br /&gt;
&lt;br /&gt;
=== Storage Requirements ===&lt;br /&gt;
&lt;br /&gt;
=== Manila Requirements ===&lt;br /&gt;
&lt;br /&gt;
== Neutron Mediated Access ==&lt;br /&gt;
&lt;br /&gt;
=== Integration Details ===&lt;br /&gt;
&lt;br /&gt;
=== Storage Requirements ===&lt;br /&gt;
&lt;br /&gt;
=== Manila Requirements ===&lt;br /&gt;
&lt;br /&gt;
==Presentations==&lt;br /&gt;
* [https://wiki.openstack.org/w/images/d/d8/VirtFileShare_Glusterfs.pdf Hypervisor Mediated Storage Use-case:  Glusterfs]&lt;/div&gt;</summary>
		<author><name>DougW</name></author>	</entry>

	<entry>
		<id>https://wiki.openstack.org/w/index.php?title=Manila/Manila_Storage_Integration_Patterns&amp;diff=28615</id>
		<title>Manila/Manila Storage Integration Patterns</title>
		<link rel="alternate" type="text/html" href="https://wiki.openstack.org/w/index.php?title=Manila/Manila_Storage_Integration_Patterns&amp;diff=28615"/>
				<updated>2013-08-22T19:13:30Z</updated>
		
		<summary type="html">&lt;p&gt;DougW: /* Presentations */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== Overview ==&lt;br /&gt;
The mechanism in which NAS storage integrates with the a Nova instance depends on the capabilities of storage technologies.  Integration can be roughly styles of access:&lt;br /&gt;
* '''Direct IP access''', for small/flat networks. The storage backend exports the share directly to the IP of the VM or client, and the network plumbing is assumed to be taken care of. This is the simplest to implement and has already been implemented. The major shortcoming is the lack of network segmentation in a multi-tenant environment.&lt;br /&gt;
* '''Hypervisor-mediated access'''. The storage backend exports the share to the compute node where the hypervisor is running, and the hypervisor is responsible for exposing it to the VM through some kind of tunnel in a secure way. This requires changes in Nova, and is dependent both on support in both the hypervisor and the guest OS for the filesystem tunnel. VirtFS is one such solution, but it’s supported by only some hypervisors on some guest OSes. Hypervisor support is known to be in QEMU, KVM, and Xen, which cover a reasonably large fraction of OpenStack use cases, but OS support is only in Linux and BSD, which excludes Windows. VirtFS support can in theory be added to Windows, but that’s a significant project. Another limitation to this approach is that the filesystem would appear to the guest differently than a normal network share – which could cause issues for applications designed explicitly for a particular share protocol (consider the many implementations of “direct NFS”). The major advantage to this approach is that it’s easier than the below model and it much more closely mirrors how storage access works today with Cinder.&lt;br /&gt;
* '''Neutron-mediated access'''. The storage backend is required to support logical networks, such as VLANs or SDNs. The storage backend exports the share directly to the IP of the VM or client, but only on the logical network the client is part of. Quantum must be able to talk to storage backends and connect them into its networking model. This would probably involve some new kind of Quantum plugin or new Quantum APIs that the Shared Filesystem Service could consume to coordinate the plumbing operation. For storage backends that don’t support logical networks a gateway could sit in front of the storage and provide the feature.&lt;br /&gt;
&lt;br /&gt;
Note:  Above text based on email exchanges between Ben Swartzlander and Doug Williams&lt;br /&gt;
&lt;br /&gt;
== Direct IP Access ==&lt;br /&gt;
&lt;br /&gt;
=== Integration Details ===&lt;br /&gt;
&lt;br /&gt;
=== Storage Requirements ===&lt;br /&gt;
&lt;br /&gt;
=== Manila Requirements ===&lt;br /&gt;
&lt;br /&gt;
== Hypervisor Mediated Access ==&lt;br /&gt;
&lt;br /&gt;
=== Integration Details ===&lt;br /&gt;
&lt;br /&gt;
=== Storage Requirements ===&lt;br /&gt;
&lt;br /&gt;
=== Manila Requirements ===&lt;br /&gt;
&lt;br /&gt;
== Neutron Mediated Access ==&lt;br /&gt;
&lt;br /&gt;
=== Integration Details ===&lt;br /&gt;
&lt;br /&gt;
=== Storage Requirements ===&lt;br /&gt;
&lt;br /&gt;
=== Manila Requirements ===&lt;br /&gt;
&lt;br /&gt;
==Presentations==&lt;br /&gt;
* [https://wiki.openstack.org/w/images/d/d8/VirtFileShare_Glusterfs.pdf Hypervisor Mediated Storage Use-case:  Glusterfs]&lt;/div&gt;</summary>
		<author><name>DougW</name></author>	</entry>

	<entry>
		<id>https://wiki.openstack.org/w/index.php?title=Manila/Manila_Storage_Integration_Patterns&amp;diff=28613</id>
		<title>Manila/Manila Storage Integration Patterns</title>
		<link rel="alternate" type="text/html" href="https://wiki.openstack.org/w/index.php?title=Manila/Manila_Storage_Integration_Patterns&amp;diff=28613"/>
				<updated>2013-08-22T19:13:10Z</updated>
		
		<summary type="html">&lt;p&gt;DougW: /* Presentations */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== Overview ==&lt;br /&gt;
The mechanism in which NAS storage integrates with the a Nova instance depends on the capabilities of storage technologies.  Integration can be roughly styles of access:&lt;br /&gt;
* '''Direct IP access''', for small/flat networks. The storage backend exports the share directly to the IP of the VM or client, and the network plumbing is assumed to be taken care of. This is the simplest to implement and has already been implemented. The major shortcoming is the lack of network segmentation in a multi-tenant environment.&lt;br /&gt;
* '''Hypervisor-mediated access'''. The storage backend exports the share to the compute node where the hypervisor is running, and the hypervisor is responsible for exposing it to the VM through some kind of tunnel in a secure way. This requires changes in Nova, and is dependent both on support in both the hypervisor and the guest OS for the filesystem tunnel. VirtFS is one such solution, but it’s supported by only some hypervisors on some guest OSes. Hypervisor support is known to be in QEMU, KVM, and Xen, which cover a reasonably large fraction of OpenStack use cases, but OS support is only in Linux and BSD, which excludes Windows. VirtFS support can in theory be added to Windows, but that’s a significant project. Another limitation to this approach is that the filesystem would appear to the guest differently than a normal network share – which could cause issues for applications designed explicitly for a particular share protocol (consider the many implementations of “direct NFS”). The major advantage to this approach is that it’s easier than the below model and it much more closely mirrors how storage access works today with Cinder.&lt;br /&gt;
* '''Neutron-mediated access'''. The storage backend is required to support logical networks, such as VLANs or SDNs. The storage backend exports the share directly to the IP of the VM or client, but only on the logical network the client is part of. Quantum must be able to talk to storage backends and connect them into its networking model. This would probably involve some new kind of Quantum plugin or new Quantum APIs that the Shared Filesystem Service could consume to coordinate the plumbing operation. For storage backends that don’t support logical networks a gateway could sit in front of the storage and provide the feature.&lt;br /&gt;
&lt;br /&gt;
Note:  Above text based on email exchanges between Ben Swartzlander and Doug Williams&lt;br /&gt;
&lt;br /&gt;
== Direct IP Access ==&lt;br /&gt;
&lt;br /&gt;
=== Integration Details ===&lt;br /&gt;
&lt;br /&gt;
=== Storage Requirements ===&lt;br /&gt;
&lt;br /&gt;
=== Manila Requirements ===&lt;br /&gt;
&lt;br /&gt;
== Hypervisor Mediated Access ==&lt;br /&gt;
&lt;br /&gt;
=== Integration Details ===&lt;br /&gt;
&lt;br /&gt;
=== Storage Requirements ===&lt;br /&gt;
&lt;br /&gt;
=== Manila Requirements ===&lt;br /&gt;
&lt;br /&gt;
== Neutron Mediated Access ==&lt;br /&gt;
&lt;br /&gt;
=== Integration Details ===&lt;br /&gt;
&lt;br /&gt;
=== Storage Requirements ===&lt;br /&gt;
&lt;br /&gt;
=== Manila Requirements ===&lt;br /&gt;
&lt;br /&gt;
==Presentations==&lt;br /&gt;
[https://wiki.openstack.org/w/images/d/d8/VirtFileShare_Glusterfs.pdf Hypervisor Mediated Storage Use-case:  Glusterfs]&lt;/div&gt;</summary>
		<author><name>DougW</name></author>	</entry>

	<entry>
		<id>https://wiki.openstack.org/w/index.php?title=File:VirtFileShare_Glusterfs.pdf&amp;diff=28612</id>
		<title>File:VirtFileShare Glusterfs.pdf</title>
		<link rel="alternate" type="text/html" href="https://wiki.openstack.org/w/index.php?title=File:VirtFileShare_Glusterfs.pdf&amp;diff=28612"/>
				<updated>2013-08-22T19:10:33Z</updated>
		
		<summary type="html">&lt;p&gt;DougW: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>DougW</name></author>	</entry>

	<entry>
		<id>https://wiki.openstack.org/w/index.php?title=Manila/Manila_Storage_Integration_Patterns&amp;diff=28611</id>
		<title>Manila/Manila Storage Integration Patterns</title>
		<link rel="alternate" type="text/html" href="https://wiki.openstack.org/w/index.php?title=Manila/Manila_Storage_Integration_Patterns&amp;diff=28611"/>
				<updated>2013-08-22T19:09:31Z</updated>
		
		<summary type="html">&lt;p&gt;DougW: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== Overview ==&lt;br /&gt;
The mechanism in which NAS storage integrates with the a Nova instance depends on the capabilities of storage technologies.  Integration can be roughly styles of access:&lt;br /&gt;
* '''Direct IP access''', for small/flat networks. The storage backend exports the share directly to the IP of the VM or client, and the network plumbing is assumed to be taken care of. This is the simplest to implement and has already been implemented. The major shortcoming is the lack of network segmentation in a multi-tenant environment.&lt;br /&gt;
* '''Hypervisor-mediated access'''. The storage backend exports the share to the compute node where the hypervisor is running, and the hypervisor is responsible for exposing it to the VM through some kind of tunnel in a secure way. This requires changes in Nova, and is dependent both on support in both the hypervisor and the guest OS for the filesystem tunnel. VirtFS is one such solution, but it’s supported by only some hypervisors on some guest OSes. Hypervisor support is known to be in QEMU, KVM, and Xen, which cover a reasonably large fraction of OpenStack use cases, but OS support is only in Linux and BSD, which excludes Windows. VirtFS support can in theory be added to Windows, but that’s a significant project. Another limitation to this approach is that the filesystem would appear to the guest differently than a normal network share – which could cause issues for applications designed explicitly for a particular share protocol (consider the many implementations of “direct NFS”). The major advantage to this approach is that it’s easier than the below model and it much more closely mirrors how storage access works today with Cinder.&lt;br /&gt;
* '''Neutron-mediated access'''. The storage backend is required to support logical networks, such as VLANs or SDNs. The storage backend exports the share directly to the IP of the VM or client, but only on the logical network the client is part of. Quantum must be able to talk to storage backends and connect them into its networking model. This would probably involve some new kind of Quantum plugin or new Quantum APIs that the Shared Filesystem Service could consume to coordinate the plumbing operation. For storage backends that don’t support logical networks a gateway could sit in front of the storage and provide the feature.&lt;br /&gt;
&lt;br /&gt;
Note:  Above text based on email exchanges between Ben Swartzlander and Doug Williams&lt;br /&gt;
&lt;br /&gt;
== Direct IP Access ==&lt;br /&gt;
&lt;br /&gt;
=== Integration Details ===&lt;br /&gt;
&lt;br /&gt;
=== Storage Requirements ===&lt;br /&gt;
&lt;br /&gt;
=== Manila Requirements ===&lt;br /&gt;
&lt;br /&gt;
== Hypervisor Mediated Access ==&lt;br /&gt;
&lt;br /&gt;
=== Integration Details ===&lt;br /&gt;
&lt;br /&gt;
=== Storage Requirements ===&lt;br /&gt;
&lt;br /&gt;
=== Manila Requirements ===&lt;br /&gt;
&lt;br /&gt;
== Neutron Mediated Access ==&lt;br /&gt;
&lt;br /&gt;
=== Integration Details ===&lt;br /&gt;
&lt;br /&gt;
=== Storage Requirements ===&lt;br /&gt;
&lt;br /&gt;
=== Manila Requirements ===&lt;br /&gt;
&lt;br /&gt;
==Presentations==&lt;/div&gt;</summary>
		<author><name>DougW</name></author>	</entry>

	<entry>
		<id>https://wiki.openstack.org/w/index.php?title=Manila/Manila_Storage_Integration_Patterns&amp;diff=28610</id>
		<title>Manila/Manila Storage Integration Patterns</title>
		<link rel="alternate" type="text/html" href="https://wiki.openstack.org/w/index.php?title=Manila/Manila_Storage_Integration_Patterns&amp;diff=28610"/>
				<updated>2013-08-22T19:05:45Z</updated>
		
		<summary type="html">&lt;p&gt;DougW: Created page with &amp;quot; == Overview == The mechanism in which NAS storage integrates with the a Nova instance depends on the capabilities of storage technologies.  Integration can be roughly styles ...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== Overview ==&lt;br /&gt;
The mechanism in which NAS storage integrates with the a Nova instance depends on the capabilities of storage technologies.  Integration can be roughly styles of access:&lt;br /&gt;
* '''Direct IP access''', for small/flat networks. The storage backend exports the share directly to the IP of the VM or client, and the network plumbing is assumed to be taken care of. This is the simplest to implement and has already been implemented. The major shortcoming is the lack of network segmentation in a multi-tenant environment.&lt;br /&gt;
* '''Hypervisor-mediated access'''. The storage backend exports the share to the compute node where the hypervisor is running, and the hypervisor is responsible for exposing it to the VM through some kind of tunnel in a secure way. This requires changes in Nova, and is dependent both on support in both the hypervisor and the guest OS for the filesystem tunnel. VirtFS is one such solution, but it’s supported by only some hypervisors on some guest OSes. Hypervisor support is known to be in QEMU, KVM, and Xen, which cover a reasonably large fraction of OpenStack use cases, but OS support is only in Linux and BSD, which excludes Windows. VirtFS support can in theory be added to Windows, but that’s a significant project. Another limitation to this approach is that the filesystem would appear to the guest differently than a normal network share – which could cause issues for applications designed explicitly for a particular share protocol (consider the many implementations of “direct NFS”). The major advantage to this approach is that it’s easier than the below model and it much more closely mirrors how storage access works today with Cinder.&lt;br /&gt;
* '''Neutron-mediated access'''. The storage backend is required to support logical networks, such as VLANs or SDNs. The storage backend exports the share directly to the IP of the VM or client, but only on the logical network the client is part of. Quantum must be able to talk to storage backends and connect them into its networking model. This would probably involve some new kind of Quantum plugin or new Quantum APIs that the Shared Filesystem Service could consume to coordinate the plumbing operation. For storage backends that don’t support logical networks a gateway could sit in front of the storage and provide the feature.&lt;br /&gt;
&lt;br /&gt;
Note:  Above text based on email exchanges between Ben Swartzlander and Doug Williams&lt;br /&gt;
&lt;br /&gt;
== Direct IP Access ==&lt;br /&gt;
&lt;br /&gt;
=== Integration Details ===&lt;br /&gt;
&lt;br /&gt;
=== Storage Requirements ===&lt;br /&gt;
&lt;br /&gt;
=== Manila Requirements ===&lt;br /&gt;
&lt;br /&gt;
== Hypervisor Mediated Access ==&lt;br /&gt;
&lt;br /&gt;
== Neutron Mediated Access ==&lt;br /&gt;
&lt;br /&gt;
==Presentations==&lt;/div&gt;</summary>
		<author><name>DougW</name></author>	</entry>

	<entry>
		<id>https://wiki.openstack.org/w/index.php?title=Manila&amp;diff=28564</id>
		<title>Manila</title>
		<link rel="alternate" type="text/html" href="https://wiki.openstack.org/w/index.php?title=Manila&amp;diff=28564"/>
				<updated>2013-08-22T02:50:54Z</updated>
		
		<summary type="html">&lt;p&gt;DougW: /* What is Manila? */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Contents ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==OpenStack File Shares (&amp;quot;Manila&amp;quot;)==&lt;br /&gt;
&lt;br /&gt;
==Related Projects==&lt;br /&gt;
* Cinder&lt;br /&gt;
* Python Manila Client&lt;br /&gt;
&lt;br /&gt;
==What is Manila?==&lt;br /&gt;
Manila is an OpenStack affiliated project to provide virtual file shares (a/k/a  &amp;quot;file as a service&amp;quot; or virtual NAS).   Manila is a spin-off of the Cinder project.  Whereas Cinder exposes virtual block storage, Manila exposes mountable file shares.  These file shares can be presented the a Nova guest via NFS, SMB, VirtFS, Glusterfs Native protocol or vendor-specific network attached storage protocols.  Manila file shares can be concurrently mounted by multiple Nova guests. &lt;br /&gt;
&lt;br /&gt;
The Manila project was initiated in August 2013 and is currently in start-up.  know what they're doing with Neutron).&lt;br /&gt;
&lt;br /&gt;
If you're a storage geek and like to hack on OpenStack, please join!&lt;br /&gt;
&lt;br /&gt;
More Info:&lt;br /&gt;
*[[Manila/Manila Overview|Manila Overview]]&lt;br /&gt;
*[[Manila/Manila Storage Integration Patterns|Manila Storage Integration Patterns]]&lt;br /&gt;
&lt;br /&gt;
==Why Manila?==&lt;br /&gt;
&lt;br /&gt;
==Using Manila==&lt;br /&gt;
&lt;br /&gt;
==Current Project Status==&lt;br /&gt;
&lt;br /&gt;
==Participate==&lt;br /&gt;
&lt;br /&gt;
==Related Pages==&lt;/div&gt;</summary>
		<author><name>DougW</name></author>	</entry>

	<entry>
		<id>https://wiki.openstack.org/w/index.php?title=Manila&amp;diff=28563</id>
		<title>Manila</title>
		<link rel="alternate" type="text/html" href="https://wiki.openstack.org/w/index.php?title=Manila&amp;diff=28563"/>
				<updated>2013-08-22T02:49:57Z</updated>
		
		<summary type="html">&lt;p&gt;DougW: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Contents ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==OpenStack File Shares (&amp;quot;Manila&amp;quot;)==&lt;br /&gt;
&lt;br /&gt;
==Related Projects==&lt;br /&gt;
* Cinder&lt;br /&gt;
* Python Manila Client&lt;br /&gt;
&lt;br /&gt;
==What is Manila?==&lt;br /&gt;
Manila is an OpenStack affiliated project to provide virtual file shares (a/k/a  &amp;quot;file as a service&amp;quot; or virtual NAS).   Manila is a spin-off of the Cinder project.  Whereas Cinder exposes virtual block storage, Manila exposes mountable file shares.  These file shares can be presented the a Nova guest via NFS, SMB, VirtFS, Glusterfs Native protocol or vendor-specific network attached storage protocols.  Manila file shares can be concurrently mounted by multiple Nova guests. &lt;br /&gt;
&lt;br /&gt;
The Manila project was initiated in August 2013 and is currently in start-up.  know what they're doing with Neutron).&lt;br /&gt;
&lt;br /&gt;
If you're a storage geek and like to hack on OpenStack, please join!&lt;br /&gt;
&lt;br /&gt;
More Info:&lt;br /&gt;
*[[Manila Overview|Manila/Manila Overview]]&lt;br /&gt;
*[[Manila Storage Integration Patterns|Manila/Manila Storage Integration Patterns]]&lt;br /&gt;
&lt;br /&gt;
==Why Manila?==&lt;br /&gt;
&lt;br /&gt;
==Using Manila==&lt;br /&gt;
&lt;br /&gt;
==Current Project Status==&lt;br /&gt;
&lt;br /&gt;
==Participate==&lt;br /&gt;
&lt;br /&gt;
==Related Pages==&lt;/div&gt;</summary>
		<author><name>DougW</name></author>	</entry>

	<entry>
		<id>https://wiki.openstack.org/w/index.php?title=Manila&amp;diff=28562</id>
		<title>Manila</title>
		<link rel="alternate" type="text/html" href="https://wiki.openstack.org/w/index.php?title=Manila&amp;diff=28562"/>
				<updated>2013-08-22T02:47:23Z</updated>
		
		<summary type="html">&lt;p&gt;DougW: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Contents ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==OpenStack File Shares (&amp;quot;Manila&amp;quot;)==&lt;br /&gt;
&lt;br /&gt;
==Related Projects==&lt;br /&gt;
* Cinder&lt;br /&gt;
* Python Manila Client&lt;br /&gt;
&lt;br /&gt;
==What is Manila?==&lt;br /&gt;
Manila is an OpenStack affiliated project to provide virtual file shares (a/k/a  &amp;quot;file as a service&amp;quot; or virtual NAS).   Manila is a spin-off of the Cinder project.  Whereas Cinder exposes virtual block storage, Manila exposes mountable file shares.  These file shares can be presented the a Nova guest via NFS, SMB, VirtFS, Glusterfs Native protocol or vendor-specific network attached storage protocols.  Manila file shares can be concurrently mounted by multiple Nova guests. &lt;br /&gt;
&lt;br /&gt;
The Manila project was initiated in August 2013 and is currently in start-up.  know what they're doing with Neutron).&lt;br /&gt;
&lt;br /&gt;
If you're a storage geek and like to hack on OpenStack, please join!&lt;br /&gt;
&lt;br /&gt;
More Info:&lt;br /&gt;
*&amp;lt;ref&amp;gt;Manila Overview&amp;lt;/ref&amp;gt;&lt;br /&gt;
*&amp;lt;ref&amp;gt;Manila Storage Integration Patterns&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Why Manila?==&lt;br /&gt;
&lt;br /&gt;
==Using Manila==&lt;br /&gt;
&lt;br /&gt;
==Current Project Status==&lt;br /&gt;
&lt;br /&gt;
==Participate==&lt;br /&gt;
&lt;br /&gt;
==Related Pages==&lt;/div&gt;</summary>
		<author><name>DougW</name></author>	</entry>

	<entry>
		<id>https://wiki.openstack.org/w/index.php?title=Manila&amp;diff=28561</id>
		<title>Manila</title>
		<link rel="alternate" type="text/html" href="https://wiki.openstack.org/w/index.php?title=Manila&amp;diff=28561"/>
				<updated>2013-08-22T02:40:22Z</updated>
		
		<summary type="html">&lt;p&gt;DougW: Create Manila top level page, partially populate content&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Contents ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==OpenStack File Shares (&amp;quot;Manila&amp;quot;)==&lt;br /&gt;
&lt;br /&gt;
==Related Projects==&lt;br /&gt;
* Cinder&lt;br /&gt;
* Python Manila Client&lt;br /&gt;
&lt;br /&gt;
==What is Manila?==&lt;br /&gt;
Manila is an OpenStack affiliated project to provide virtual file shares (a/k/a  &amp;quot;file as a service&amp;quot; or virtual NAS).   Manila is a spin-off of the Cinder project.  Whereas Cinder exposes virtual block storage, Manila exposes mountable file shares.  These file shares can be presented the a Nova guest via NFS, SMB, VirtFS, Glusterfs Native protocol or vendor-specific network attached storage protocols.  Manila file shares can be concurrently mounted by multiple Nova guests. &lt;br /&gt;
&lt;br /&gt;
The Manila project was initiated in August 2013 and is currently in start-up.  know what they're doing with Neutron).&lt;br /&gt;
&lt;br /&gt;
If you're a storage geek and like to hack on OpenStack, please join!&lt;br /&gt;
&lt;br /&gt;
More Info:&lt;br /&gt;
*[Manila Overview]&lt;br /&gt;
*[Manila Storage Integration Patterns&lt;br /&gt;
&lt;br /&gt;
==Why Manila?==&lt;br /&gt;
&lt;br /&gt;
==Using Manila==&lt;br /&gt;
&lt;br /&gt;
==Current Project Status==&lt;br /&gt;
&lt;br /&gt;
==Participate==&lt;br /&gt;
&lt;br /&gt;
==Related Pages==&lt;/div&gt;</summary>
		<author><name>DougW</name></author>	</entry>

	</feed>