diff --git a/cinder/volume/drivers/vzstorage.py b/cinder/volume/drivers/vzstorage.py index 90f87b30b57..3ff6513866b 100644 --- a/cinder/volume/drivers/vzstorage.py +++ b/cinder/volume/drivers/vzstorage.py @@ -161,6 +161,9 @@ class VZStorageDriver(remotefs_drv.RemoteFSSnapDriver): # ThirdPartySystems wiki page CI_WIKI_NAME = "Virtuozzo_Storage_CI" + # TODO(smcginnis) Remove driver if CI not fixed by Queens + SUPPORTED = False + SHARE_FORMAT_REGEX = r'(?:(\S+):\/)?([a-zA-Z0-9_-]+)(?::(\S+))?' def __init__(self, execute=putils.execute, *args, **kwargs): diff --git a/releasenotes/notes/mark-vzstorage-deprecated-598e5c4f2dc65f29.yaml b/releasenotes/notes/mark-vzstorage-deprecated-598e5c4f2dc65f29.yaml new file mode 100644 index 00000000000..8c232c6634d --- /dev/null +++ b/releasenotes/notes/mark-vzstorage-deprecated-598e5c4f2dc65f29.yaml @@ -0,0 +1,14 @@ +--- +upgrade: + - | + The Virtuozzo driver has been marked as unsupported and is now + deprecated. ``enable_unsupported_driver`` will need to be set + to ``True`` in the driver's section in cinder.conf to continue + to use it. +deprecations: + - | + The Virtuozzo driver has been marked as unsupported and is now + deprecated. ``enable_unsupported_driver`` will need to be set + to ``True`` in the driver's section in cinder.conf to continue + to use it. If its support status does not change, they will be + removed in the Queens development cycle.