Deprecate the unused instance-name

The '--instnace-name' option exists in nova CLI for a long time,
but it is not used, so we deprecate it firstly and will remove it in
T release.


Change-Id: I0c3d611fc322ae2c9f28ce3845b1c08eaab69485
Closes-Bug: #1788182
This commit is contained in:
Tao Li 2018-09-14 11:09:38 +08:00
parent 8128ebbdd9
commit 910201f201
2 changed files with 10 additions and 1 deletions

View File

@ -1379,7 +1379,9 @@ def _print_flavor(flavor):
dest='instance_name',
metavar='<name-regexp>',
default=None,
help=_('Search with regular expression match by server name.'))
action=shell.DeprecatedAction,
help=_('Search with regular expression match by server name. The option '
'is not used and will be removed in T release.'))
@utils.arg(
'--status',
dest='status',

View File

@ -0,0 +1,7 @@
---
deprecations:
- |
The ``--instance-name`` option has been deprecated from the ``nova list``
command because the instance name query parameter is ignored by the
compute REST API.