GlusterFS Native driver uses GlusterFS, an open source distributed file system, as the storage backend for serving file shares to manila clients.
A manila share is a GlusterFS volume. This driver uses flat-network (share-server-less) model. Instances directly talk with the GlusterFS backend storage pool. The instances use ‘glusterfs’ protocol to mount the GlusterFS shares. Access to each share is allowed via TLS Certificates. Only the instance which has the TLS trust established with the GlusterFS backend can mount and hence use the share. Currently only ‘rw’ access is supported.
L3 connectivity between the storage backend and the host running the manila share service should exist.
The driver does not support network segmented multi-tenancy model. Instead multi-tenancy is supported using tenant specific TLS certificates.
The following parameters in manila’s configuration file need to be set:
manila.share.drivers.glusterfs.glusterfs_native.GlusterfsNativeShareDriver
that can be used to create shares. The servers are expected to be of
distinct Gluster clusters (ie. should not be gluster peers). Each server
should be of the form [<remoteuser>@]<glustervolserver>
.
The optional <remoteuser>@
part of the server URI indicates SSH
access for cluster management (see related optional parameters below).
If it is not given, direct command line management is performed (ie.
manila host is assumed to be part of the GlusterFS cluster the server
belongs to).
used to filter GlusterFS volumes for share creation. The regex template can
contain the #{size} parameter which matches a number (sequence of digits)
and the value shall be interpreted as size of the volume in GB. Examples:
manila-share-volume-\d+$
, manila-share-volume-#{size}G-\d+$
; with
matching volume names, respectively: manila-share-volume-12,
manila-share-volume-3G-13”. In latter example, the number that matches
#{size}
, that is, 3, is an indication that the size of volume is 3G.
The following configuration parameters are optional:
manila host>
glusterfs_path_to_private_key = <path to manila host’s private key file>
glusterfs_server_password = <password of remote GlusterFS server machine>
glusterfs_servers
),
as described in http://www.gluster.org/community/documentation/index.php/SSL.
(Enabling SSL/TLS for the management path is also possible but not
recommended currently.)glusterfs_volume_pattern
. However,
the GlusterFS endpoint is allowed to extend this set any time (so manila
and GlusterFS endpoints are expected to communicate volume supply/demand
out-of-band). glusterfs_volume_pattern
can include a size hint (with
#{size}
syntax), which, if present, requires the GlusterFS end to
indicate the size of the shares in GB in the name. (On share creation,
manila picks volumes at least as big as the requested one.)Except where otherwise noted, this document is licensed under Creative Commons Attribution 3.0 License. See all OpenStack Legal Documents.