e18f05e735
This patch creates a new 'supported' driver for Seagate (STX) FC and iSCSI arrays by renaming and re-enabling the old 'unsupported' dothill driver. Other than marking the driver as 'supported', this patch contains no changes in functionality except for multiattach fixes from change I47f02729437cabab92ccc553a4c60d0c0a796952 needed to pass CI and deprecation of vendor-specific options requested by the core team. Other drivers which referenced the dothill driver are modified to use the Seagate class names, so users of those drivers will not be affected except for option-deprecation warnings. Change-Id: I3115ae296ae6b5702c7a8fa39249b8735542e17e
53 lines
1.7 KiB
Python
53 lines
1.7 KiB
Python
# Copyright 2014 Objectif Libre
|
|
# Copyright 2015 Dot Hill Systems Corp.
|
|
# Copyright 2016-2019 Seagate Technology or one of its affiliates
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
#
|
|
|
|
from cinder import interface
|
|
import cinder.volume.drivers.lenovo.lenovo_common as lenovo_common
|
|
import cinder.volume.drivers.stx.fc as fc
|
|
|
|
|
|
@interface.volumedriver
|
|
class LenovoFCDriver(fc.STXFCDriver):
|
|
"""OpenStack Fibre Channel cinder drivers for Lenovo Storage arrays.
|
|
|
|
.. code-block:: default
|
|
|
|
Version history:
|
|
1.0 - Inheriting from DotHill cinder drivers.
|
|
1.6 - Add management path redundancy and reduce load placed
|
|
on management controller.
|
|
2.0 - DotHill driver renamed to Seagate (STX)
|
|
"""
|
|
|
|
VERSION = "2.0"
|
|
|
|
SUPPORTED = True
|
|
|
|
# ThirdPartySystems wiki page
|
|
CI_WIKI_NAME = "Lenovo_Storage_CI"
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
super(LenovoFCDriver, self).__init__(*args, **kwargs)
|
|
self.configuration.append_config_values(lenovo_common.common_opts)
|
|
|
|
@staticmethod
|
|
def get_driver_options():
|
|
return lenovo_common.common_opts
|
|
|
|
def _init_common(self):
|
|
return lenovo_common.LenovoCommon(self.configuration)
|