Dell PS Driver moves to maintenance mode

We are moving Dell PS Driver to maintenance mode
and will be removed from the tree in S release.

Change-Id: Ic4fef5176766578d4f9e0fdc4e80a2dedfb242c4
This commit is contained in:
rajinir 2018-09-18 10:54:53 -05:00 committed by Sean McGinnis
parent ab911c1b47
commit 3308fa733e
3 changed files with 18 additions and 3 deletions

View File

@ -25,6 +25,7 @@ import greenlet
from oslo_concurrency import processutils from oslo_concurrency import processutils
from oslo_config import cfg from oslo_config import cfg
from oslo_log import log as logging from oslo_log import log as logging
from oslo_log import versionutils
from oslo_utils import excutils from oslo_utils import excutils
from six.moves import range from six.moves import range
@ -411,6 +412,10 @@ class PSSeriesISCSIDriver(san.SanISCSIDriver):
def do_setup(self, context): def do_setup(self, context):
"""Disable cli confirmation and tune output format.""" """Disable cli confirmation and tune output format."""
try: try:
msg = _("The Dell PS driver is moving to maintenance mode"
"in the S release and will be removed in T release.")
versionutils.report_deprecated_feature(LOG, msg)
disabled_cli_features = ('confirmation', 'paging', 'events', disabled_cli_features = ('confirmation', 'paging', 'events',
'formatoutput') 'formatoutput')
for feature in disabled_cli_features: for feature in disabled_cli_features:

View File

@ -1,10 +1,14 @@
================================ =============================================
Dell EMC PS Series volume driver Dell EMC PS Series volume driver (Deprecated)
================================ =============================================
The Dell PS Series (EqualLogic) volume driver interacts with configured PS The Dell PS Series (EqualLogic) volume driver interacts with configured PS
Series arrays and supports various operations. Series arrays and supports various operations.
.. note::
The Dell PS Series volume driver is moving into maintanence mode in S
release and will be removed in the T release.
Supported operations Supported operations
~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~

View File

@ -0,0 +1,6 @@
---
deprecations:
- The Dell EMC PS Series volume driver which supports
Dell PS Series (EqualLogic) Storage is moving to
maintenance mode in S Release and will be removed
in T Release.