diff --git a/cinder/volume/drivers/cloudbyte/cloudbyte.py b/cinder/volume/drivers/cloudbyte/cloudbyte.py index ac46bd37776..73ac3afbeb7 100644 --- a/cinder/volume/drivers/cloudbyte/cloudbyte.py +++ b/cinder/volume/drivers/cloudbyte/cloudbyte.py @@ -49,6 +49,10 @@ class CloudByteISCSIDriver(san.SanISCSIDriver): VERSION = '1.2.0' CI_WIKI_NAME = "CloudByte_CI" + # TODO(smcginnis) Either remove this if CI requirements are met, or + # remove this driver in the Pike release per normal deprecation + SUPPORTED = False + volume_stats = {} def __init__(self, *args, **kwargs): @@ -62,6 +66,7 @@ class CloudByteISCSIDriver(san.SanISCSIDriver): self.configuration.append_config_values( options.cloudbyte_connection_opts) self.cb_use_chap = self.configuration.use_chap_auth + self.get_volume_stats() def _get_url(self, cmd, params, apikey): diff --git a/releasenotes/notes/mark-cloudbyte-unsupported-8615a127439ed262.yaml b/releasenotes/notes/mark-cloudbyte-unsupported-8615a127439ed262.yaml new file mode 100644 index 00000000000..dddc5107008 --- /dev/null +++ b/releasenotes/notes/mark-cloudbyte-unsupported-8615a127439ed262.yaml @@ -0,0 +1,11 @@ +--- +upgrade: + - The CloudByte driver has been marked as unsupported and is + now deprecated. enable_unsupported_drivers will need to + be set to True in cinder.conf to continue to use it. +deprecations: + - The CloudByte driver has been marked as unsupported and is + now deprecated. enable_unsupported_drivers will need to + be set to True in cinder.conf to continue to use it. If + its support status does not change it will be removed in + the next release.