mirror of
https://opendev.org/openstack/python-openstackclient.git
synced 2026-01-17 07:20:45 +00:00
Add note about microversion 2.87 in server rescue help
The ability to rescue a volume-backed server was added in compute microversion 2.87 [1]. This adds a note to the command help to improve user experience. [1] https://docs.openstack.org/nova/latest/user/rescue.html Change-Id: I5f40c3ca28e13bd1f979bc5f8c337302a3b9a5be
This commit is contained in:
parent
837cbfbcdb
commit
d7aa53b9a2
1 changed files with 5 additions and 1 deletions
|
|
@ -3645,7 +3645,11 @@ class RemoveServerVolume(command.Command):
|
|||
|
||||
|
||||
class RescueServer(command.Command):
|
||||
_description = _("Put server in rescue mode")
|
||||
_description = _(
|
||||
"Put server in rescue mode. "
|
||||
"Specify ``--os-compute-api-version 2.87`` or higher to rescue a "
|
||||
"server booted from a volume."
|
||||
)
|
||||
|
||||
def get_parser(self, prog_name):
|
||||
parser = super(RescueServer, self).get_parser(prog_name)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue