Pure Storage - bump version numbers for Ussuri

Pure uses the version number of the driver to identify which
customers are using which versions of OpenStack. This patch
is to align version numbers for iSCSI and FC drivers, but also
to identify the driver type. This will help granular analysis of
which driver is being used in each OpenStack version.

Change-Id: I8f4d1474dab356d66db70640a47bf690f065c0c4
This commit is contained in:
Simon Dodsley 2019-11-11 10:51:39 -05:00
parent 821cc703c0
commit f08722958e

View File

@ -2343,7 +2343,7 @@ class PureISCSIDriver(PureBaseVolumeDriver, san.SanISCSIDriver):
the underlying storage connectivity with the FlashArray.
"""
VERSION = "9.0.0"
VERSION = "10.0.iscsi"
def __init__(self, *args, **kwargs):
execute = kwargs.pop("execute", utils.execute)
@ -2590,7 +2590,7 @@ class PureFCDriver(PureBaseVolumeDriver, driver.FibreChannelDriver):
supports the Cinder Fibre Channel Zone Manager.
"""
VERSION = "7.0.0"
VERSION = "10.0.fc"
def __init__(self, *args, **kwargs):
execute = kwargs.pop("execute", utils.execute)