diff --git a/cinder/volume/drivers/quobyte.py b/cinder/volume/drivers/quobyte.py index c6c23d1e9de..80891f9a65c 100644 --- a/cinder/volume/drivers/quobyte.py +++ b/cinder/volume/drivers/quobyte.py @@ -31,14 +31,14 @@ from cinder import interface from cinder import utils from cinder.volume.drivers import remotefs as remotefs_drv -VERSION = '1.1.3' +VERSION = '1.1.4' LOG = logging.getLogger(__name__) volume_opts = [ - cfg.URIOpt('quobyte_volume_url', - help=('URL to the Quobyte volume e.g.,' - ' quobyte:///')), + cfg.StrOpt('quobyte_volume_url', + help=('Quobyte URL to the Quobyte volume e.g.,' + ' quobyte://, /')), cfg.StrOpt('quobyte_client_cfg', help=('Path to a Quobyte Client configuration file.')), cfg.BoolOpt('quobyte_sparsed_volumes', @@ -83,6 +83,7 @@ class QuobyteDriver(remotefs_drv.RemoteFSSnapDriverDistributed): 1.1.1 - Removes getfattr calls from driver 1.1.2 - Fixes a bug in the creation of cloned volumes 1.1.3 - Explicitely mounts Quobyte volumes w/o xattrs + 1.1.4 - Fixes capability to configure redundancy in quobyte_volume_url """ diff --git a/releasenotes/notes/redundancy-in-volume-url-4282087232e6e6f1.yaml b/releasenotes/notes/redundancy-in-volume-url-4282087232e6e6f1.yaml new file mode 100644 index 00000000000..f8c4e3e1079 --- /dev/null +++ b/releasenotes/notes/redundancy-in-volume-url-4282087232e6e6f1.yaml @@ -0,0 +1,5 @@ +--- +fixes: + - | + Fixes a bug that prevented the configuration of multiple redundant + Quobyte registries in the quobyte_volume_url config option.