diff --git a/doc/source/devref/glusterfs_native_driver.rst b/doc/source/devref/glusterfs_native_driver.rst index 362bab4c4a..0c460ac446 100644 --- a/doc/source/devref/glusterfs_native_driver.rst +++ b/doc/source/devref/glusterfs_native_driver.rst @@ -83,7 +83,7 @@ The following parameters in Manila's configuration file need to be set: - `glusterfs_volume_pattern` = Regular expression template 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 intepreted as size of the volume in GB. Examples: + 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 diff --git a/doc/source/devref/pool-aware-manila-scheduler.rst b/doc/source/devref/pool-aware-manila-scheduler.rst index c5d5d86539..f0bc39b2c7 100644 --- a/doc/source/devref/pool-aware-manila-scheduler.rst +++ b/doc/source/devref/pool-aware-manila-scheduler.rst @@ -20,7 +20,7 @@ capabilities and single capacity. In reality this assumption is not true for many storage providers, as their storage can be further divided or partitioned into pools to offer completely different sets of capabilities and capacities. That is, there are storage backends which are a combination of -storage pools rather than a single homogenous entity. Usually shares/snapshots +storage pools rather than a single homogeneous entity. Usually shares/snapshots can't be placed across pools on such backends. In the current implementation, an attempt is made to map a single backend diff --git a/manila/share/drivers/glusterfs_native.py b/manila/share/drivers/glusterfs_native.py index 333ad783b3..dfe6715b6a 100644 --- a/manila/share/drivers/glusterfs_native.py +++ b/manila/share/drivers/glusterfs_native.py @@ -74,7 +74,7 @@ glusterfs_native_manila_share_opts = [ 'The regex template can optionally (ie. with support ' 'of the GlusterFS backend) contain the #{size} ' 'parameter which matches an integer (sequence of ' - 'digits) in which case the value shall be intepreted as ' + 'digits) in which case the value shall be interpreted as ' 'size of the volume in GB. Examples: ' '"manila-share-volume-\d+$", ' '"manila-share-volume-#{size}G-\d+$"; '