diff --git a/cinder/volume/drivers/remotefs.py b/cinder/volume/drivers/remotefs.py index 3cdc5c66810..935ce75d15c 100644 --- a/cinder/volume/drivers/remotefs.py +++ b/cinder/volume/drivers/remotefs.py @@ -48,8 +48,7 @@ LOG = logging.getLogger(__name__) nas_opts = [ cfg.StrOpt('nas_host', default='', - help='IP address or Hostname of NAS system.', - deprecated_name='nas_ip'), + help='IP address or Hostname of NAS system.'), cfg.StrOpt('nas_login', default='admin', help='User name to connect to NAS system.'), diff --git a/releasenotes/notes/remove-nas-ip-config-option-8d56c14f1f4614fc.yaml b/releasenotes/notes/remove-nas-ip-config-option-8d56c14f1f4614fc.yaml new file mode 100644 index 00000000000..189141ed539 --- /dev/null +++ b/releasenotes/notes/remove-nas-ip-config-option-8d56c14f1f4614fc.yaml @@ -0,0 +1,5 @@ +--- +upgrade: + - | + The old deprecated ``nas_ip`` option has been removed. + Use the ``nas_host`` instead of it.