
Change-Id: I0af2d5cfbbfdb384786ef0c17cf96ba8ca865ced Implements: blueprint dellemc-me-driver
49 lines
1.5 KiB
Python
49 lines
1.5 KiB
Python
# Copyright 2014 Objectif Libre
|
|
# Copyright 2015 Dot Hill Systems Corp.
|
|
# Copyright 2016-2020 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.dell_emc.powervault.common as pvme_common
|
|
import cinder.volume.drivers.stx.fc as fc
|
|
|
|
|
|
@interface.volumedriver
|
|
class PVMEFCDriver(fc.STXFCDriver):
|
|
"""Cinder FC driver for Dell EMC PowerVault ME-Series arrays.
|
|
|
|
.. code-block:: default
|
|
|
|
Version history:
|
|
1.0 - Inheriting from Seagate Cinder driver.
|
|
"""
|
|
|
|
VERSION = "2.0"
|
|
|
|
CI_WIKI_NAME = "PVME_CI"
|
|
|
|
SUPPORTED = True
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
super(PVMEFCDriver, self).__init__(*args, **kwargs)
|
|
self.configuration.append_config_values(pvme_common.common_opts)
|
|
|
|
@staticmethod
|
|
def get_driver_options():
|
|
return pvme_common.PVMECommon.get_driver_options()
|
|
|
|
def _init_common(self):
|
|
return pvme_common.PVMECommon(self.configuration)
|