Merge "Compute: Add description support for server"
This commit is contained in:
commit
95626f1acb
@ -125,7 +125,8 @@ unlock,server unlock,Unlock a server.
|
||||
unpause,server unpause,Unpause a server.
|
||||
unrescue,server unrescue,Restart the server from normal boot disk again.
|
||||
unshelve,server unshelve,Unshelve a server.
|
||||
update,server set / unset,Update the name or the description for a server.
|
||||
update,server set / unset --description,Update or unset the description for a server.
|
||||
update,server set --name,Update the name for a server.
|
||||
usage,usage show,Show usage data for a single tenant.
|
||||
usage-list,usage list,List usage data for all tenants.
|
||||
version-list,,List all API versions.
|
||||
|
|
@ -539,6 +539,12 @@ class CreateServer(command.ShowOne):
|
||||
metavar='<user-data>',
|
||||
help=_('User data file to serve from the metadata server'),
|
||||
)
|
||||
parser.add_argument(
|
||||
'--description',
|
||||
metavar='<description>',
|
||||
help=_('Set description for the server (supported by '
|
||||
'--os-compute-api-version 2.19 or above)'),
|
||||
)
|
||||
parser.add_argument(
|
||||
'--availability-zone',
|
||||
metavar='<zone-name>',
|
||||
@ -749,6 +755,12 @@ class CreateServer(command.ShowOne):
|
||||
"exception": e}
|
||||
)
|
||||
|
||||
if parsed_args.description:
|
||||
if compute_client.api_version < api_versions.APIVersion("2.19"):
|
||||
msg = _("Description is not supported for "
|
||||
"--os-compute-api-version less than 2.19")
|
||||
raise exceptions.CommandError(msg)
|
||||
|
||||
block_device_mapping_v2 = []
|
||||
if volume:
|
||||
block_device_mapping_v2 = [{'uuid': volume,
|
||||
@ -909,6 +921,9 @@ class CreateServer(command.ShowOne):
|
||||
scheduler_hints=hints,
|
||||
config_drive=config_drive)
|
||||
|
||||
if parsed_args.description:
|
||||
boot_kwargs['description'] = parsed_args.description
|
||||
|
||||
LOG.debug('boot_args: %s', boot_args)
|
||||
LOG.debug('boot_kwargs: %s', boot_kwargs)
|
||||
|
||||
@ -1600,6 +1615,12 @@ class RebuildServer(command.ShowOne):
|
||||
help=_('Set a property on the rebuilt instance '
|
||||
'(repeat option to set multiple values)'),
|
||||
)
|
||||
parser.add_argument(
|
||||
'--description',
|
||||
metavar='<description>',
|
||||
help=_('New description for the server (supported by '
|
||||
'--os-compute-api-version 2.19 or above'),
|
||||
)
|
||||
parser.add_argument(
|
||||
'--wait',
|
||||
action='store_true',
|
||||
@ -1644,6 +1665,12 @@ class RebuildServer(command.ShowOne):
|
||||
kwargs = {}
|
||||
if parsed_args.property:
|
||||
kwargs['meta'] = parsed_args.property
|
||||
if parsed_args.description:
|
||||
if server.api_version < api_versions.APIVersion("2.19"):
|
||||
msg = _("Description is not supported for "
|
||||
"--os-compute-api-version less than 2.19")
|
||||
raise exceptions.CommandError(msg)
|
||||
kwargs['description'] = parsed_args.description
|
||||
|
||||
if parsed_args.key_name or parsed_args.key_unset:
|
||||
if compute_client.api_version < api_versions.APIVersion('2.54'):
|
||||
@ -2065,6 +2092,12 @@ class SetServer(command.Command):
|
||||
choices=['active', 'error'],
|
||||
help=_('New server state (valid value: active, error)'),
|
||||
)
|
||||
parser.add_argument(
|
||||
'--description',
|
||||
metavar='<description>',
|
||||
help=_('New server description (supported by '
|
||||
'--os-compute-api-version 2.19 or above)'),
|
||||
)
|
||||
return parser
|
||||
|
||||
def take_action(self, parsed_args):
|
||||
@ -2096,6 +2129,13 @@ class SetServer(command.Command):
|
||||
msg = _("Passwords do not match, password unchanged")
|
||||
raise exceptions.CommandError(msg)
|
||||
|
||||
if parsed_args.description:
|
||||
if server.api_version < api_versions.APIVersion("2.19"):
|
||||
msg = _("Description is not supported for "
|
||||
"--os-compute-api-version less than 2.19")
|
||||
raise exceptions.CommandError(msg)
|
||||
server.update(description=parsed_args.description)
|
||||
|
||||
|
||||
class ShelveServer(command.Command):
|
||||
_description = _("Shelve server(s)")
|
||||
@ -2455,6 +2495,13 @@ class UnsetServer(command.Command):
|
||||
help=_('Property key to remove from server '
|
||||
'(repeat option to remove multiple values)'),
|
||||
)
|
||||
parser.add_argument(
|
||||
'--description',
|
||||
dest='description',
|
||||
action='store_true',
|
||||
help=_('Unset server description (supported by '
|
||||
'--os-compute-api-version 2.19 or above)'),
|
||||
)
|
||||
return parser
|
||||
|
||||
def take_action(self, parsed_args):
|
||||
@ -2470,6 +2517,16 @@ class UnsetServer(command.Command):
|
||||
parsed_args.property,
|
||||
)
|
||||
|
||||
if parsed_args.description:
|
||||
if compute_client.api_version < api_versions.APIVersion("2.19"):
|
||||
msg = _("Description is not supported for "
|
||||
"--os-compute-api-version less than 2.19")
|
||||
raise exceptions.CommandError(msg)
|
||||
compute_client.servers.update(
|
||||
server,
|
||||
description="",
|
||||
)
|
||||
|
||||
|
||||
class UnshelveServer(command.Command):
|
||||
_description = _("Unshelve server(s)")
|
||||
|
@ -1834,6 +1834,90 @@ class TestServerCreate(TestServer):
|
||||
self.cmd.take_action,
|
||||
parsed_args)
|
||||
|
||||
def test_server_create_with_description_api_newer(self):
|
||||
|
||||
# Description is supported for nova api version 2.19 or above
|
||||
self.app.client_manager.compute.api_version = 2.19
|
||||
|
||||
arglist = [
|
||||
'--image', 'image1',
|
||||
'--flavor', 'flavor1',
|
||||
'--description', 'description1',
|
||||
self.new_server.name,
|
||||
]
|
||||
verifylist = [
|
||||
('image', 'image1'),
|
||||
('flavor', 'flavor1'),
|
||||
('description', 'description1'),
|
||||
('config_drive', False),
|
||||
('server_name', self.new_server.name),
|
||||
]
|
||||
parsed_args = self.check_parser(self.cmd, arglist, verifylist)
|
||||
|
||||
with mock.patch.object(api_versions,
|
||||
'APIVersion',
|
||||
return_value=2.19):
|
||||
# In base command class ShowOne in cliff, abstract method
|
||||
# take_action() returns a two-part tuple with a tuple of
|
||||
# column names and a tuple of data to be shown.
|
||||
columns, data = self.cmd.take_action(parsed_args)
|
||||
|
||||
# Set expected values
|
||||
kwargs = dict(
|
||||
meta=None,
|
||||
files={},
|
||||
reservation_id=None,
|
||||
min_count=1,
|
||||
max_count=1,
|
||||
security_groups=[],
|
||||
userdata=None,
|
||||
key_name=None,
|
||||
availability_zone=None,
|
||||
block_device_mapping_v2=[],
|
||||
nics='auto',
|
||||
scheduler_hints={},
|
||||
config_drive=None,
|
||||
description='description1',
|
||||
)
|
||||
# ServerManager.create(name, image, flavor, **kwargs)
|
||||
self.servers_mock.create.assert_called_with(
|
||||
self.new_server.name,
|
||||
self.image,
|
||||
self.flavor,
|
||||
**kwargs
|
||||
)
|
||||
|
||||
self.assertEqual(self.columns, columns)
|
||||
self.assertEqual(self.datalist(), data)
|
||||
self.assertFalse(self.images_mock.called)
|
||||
self.assertFalse(self.flavors_mock.called)
|
||||
|
||||
def test_server_create_with_description_api_older(self):
|
||||
|
||||
# Description is not supported for nova api version below 2.19
|
||||
self.app.client_manager.compute.api_version = 2.18
|
||||
|
||||
arglist = [
|
||||
'--image', 'image1',
|
||||
'--flavor', 'flavor1',
|
||||
'--description', 'description1',
|
||||
self.new_server.name,
|
||||
]
|
||||
verifylist = [
|
||||
('image', 'image1'),
|
||||
('flavor', 'flavor1'),
|
||||
('description', 'description1'),
|
||||
('config_drive', False),
|
||||
('server_name', self.new_server.name),
|
||||
]
|
||||
parsed_args = self.check_parser(self.cmd, arglist, verifylist)
|
||||
|
||||
with mock.patch.object(api_versions,
|
||||
'APIVersion',
|
||||
return_value=2.19):
|
||||
self.assertRaises(exceptions.CommandError, self.cmd.take_action,
|
||||
parsed_args)
|
||||
|
||||
|
||||
class TestServerDelete(TestServer):
|
||||
|
||||
@ -2663,6 +2747,55 @@ class TestServerRebuild(TestServer):
|
||||
self.images_mock.get.assert_called_with(self.image.id)
|
||||
self.server.rebuild.assert_called_with(self.image, password)
|
||||
|
||||
def test_rebuild_with_description_api_older(self):
|
||||
|
||||
# Description is not supported for nova api version below 2.19
|
||||
self.server.api_version = 2.18
|
||||
|
||||
description = 'description1'
|
||||
arglist = [
|
||||
self.server.id,
|
||||
'--description', description
|
||||
]
|
||||
verifylist = [
|
||||
('server', self.server.id),
|
||||
('description', description)
|
||||
]
|
||||
parsed_args = self.check_parser(self.cmd, arglist, verifylist)
|
||||
|
||||
with mock.patch.object(api_versions,
|
||||
'APIVersion',
|
||||
return_value=2.19):
|
||||
self.assertRaises(exceptions.CommandError, self.cmd.take_action,
|
||||
parsed_args)
|
||||
|
||||
def test_rebuild_with_description_api_newer(self):
|
||||
|
||||
# Description is supported for nova api version 2.19 or above
|
||||
self.server.api_version = 2.19
|
||||
|
||||
description = 'description1'
|
||||
arglist = [
|
||||
self.server.id,
|
||||
'--description', description
|
||||
]
|
||||
verifylist = [
|
||||
('server', self.server.id),
|
||||
('description', description)
|
||||
]
|
||||
parsed_args = self.check_parser(self.cmd, arglist, verifylist)
|
||||
|
||||
with mock.patch.object(api_versions,
|
||||
'APIVersion',
|
||||
return_value=2.19):
|
||||
# Get the command object to test
|
||||
self.cmd.take_action(parsed_args)
|
||||
|
||||
self.servers_mock.get.assert_called_with(self.server.id)
|
||||
self.images_mock.get.assert_called_with(self.image.id)
|
||||
self.server.rebuild.assert_called_with(self.image, None,
|
||||
description=description)
|
||||
|
||||
@mock.patch.object(common_utils, 'wait_for_status', return_value=True)
|
||||
def test_rebuild_with_wait_ok(self, mock_wait_for_status):
|
||||
arglist = [
|
||||
@ -3400,6 +3533,10 @@ class TestServerSet(TestServer):
|
||||
def setUp(self):
|
||||
super(TestServerSet, self).setUp()
|
||||
|
||||
self.attrs = {
|
||||
'api_version': None,
|
||||
}
|
||||
|
||||
self.methods = {
|
||||
'update': None,
|
||||
'reset_state': None,
|
||||
@ -3502,6 +3639,48 @@ class TestServerSet(TestServer):
|
||||
mock.sentinel.fake_pass)
|
||||
self.assertIsNone(result)
|
||||
|
||||
def test_server_set_with_description_api_newer(self):
|
||||
|
||||
# Description is supported for nova api version 2.19 or above
|
||||
self.fake_servers[0].api_version = 2.19
|
||||
|
||||
arglist = [
|
||||
'--description', 'foo_description',
|
||||
'foo_vm',
|
||||
]
|
||||
verifylist = [
|
||||
('description', 'foo_description'),
|
||||
('server', 'foo_vm'),
|
||||
]
|
||||
parsed_args = self.check_parser(self.cmd, arglist, verifylist)
|
||||
with mock.patch.object(api_versions,
|
||||
'APIVersion',
|
||||
return_value=2.19):
|
||||
result = self.cmd.take_action(parsed_args)
|
||||
self.fake_servers[0].update.assert_called_once_with(
|
||||
description='foo_description')
|
||||
self.assertIsNone(result)
|
||||
|
||||
def test_server_set_with_description_api_older(self):
|
||||
|
||||
# Description is not supported for nova api version below 2.19
|
||||
self.fake_servers[0].api_version = 2.18
|
||||
|
||||
arglist = [
|
||||
'--description', 'foo_description',
|
||||
'foo_vm',
|
||||
]
|
||||
verifylist = [
|
||||
('description', 'foo_description'),
|
||||
('server', 'foo_vm'),
|
||||
]
|
||||
parsed_args = self.check_parser(self.cmd, arglist, verifylist)
|
||||
with mock.patch.object(api_versions,
|
||||
'APIVersion',
|
||||
return_value=2.19):
|
||||
self.assertRaises(exceptions.CommandError, self.cmd.take_action,
|
||||
parsed_args)
|
||||
|
||||
|
||||
class TestServerShelve(TestServer):
|
||||
|
||||
@ -3783,6 +3962,50 @@ class TestServerUnset(TestServer):
|
||||
self.fake_server, ['key1', 'key2'])
|
||||
self.assertIsNone(result)
|
||||
|
||||
def test_server_unset_with_description_api_newer(self):
|
||||
|
||||
# Description is supported for nova api version 2.19 or above
|
||||
self.app.client_manager.compute.api_version = 2.19
|
||||
|
||||
arglist = [
|
||||
'--description',
|
||||
'foo_vm',
|
||||
]
|
||||
verifylist = [
|
||||
('description', True),
|
||||
('server', 'foo_vm'),
|
||||
]
|
||||
parsed_args = self.check_parser(self.cmd, arglist, verifylist)
|
||||
|
||||
with mock.patch.object(api_versions,
|
||||
'APIVersion',
|
||||
return_value=2.19):
|
||||
result = self.cmd.take_action(parsed_args)
|
||||
self.servers_mock.update.assert_called_once_with(
|
||||
self.fake_server, description="")
|
||||
self.assertIsNone(result)
|
||||
|
||||
def test_server_unset_with_description_api_older(self):
|
||||
|
||||
# Description is not supported for nova api version below 2.19
|
||||
self.app.client_manager.compute.api_version = 2.18
|
||||
|
||||
arglist = [
|
||||
'--description',
|
||||
'foo_vm',
|
||||
]
|
||||
verifylist = [
|
||||
('description', True),
|
||||
('server', 'foo_vm'),
|
||||
]
|
||||
parsed_args = self.check_parser(self.cmd, arglist, verifylist)
|
||||
|
||||
with mock.patch.object(api_versions,
|
||||
'APIVersion',
|
||||
return_value=2.19):
|
||||
self.assertRaises(exceptions.CommandError, self.cmd.take_action,
|
||||
parsed_args)
|
||||
|
||||
|
||||
class TestServerUnshelve(TestServer):
|
||||
|
||||
|
@ -0,0 +1,6 @@
|
||||
---
|
||||
features:
|
||||
- |
|
||||
Add ``--description`` option to ``server create``, ``server rebuild``,
|
||||
``server set`` and ``server unset`` commands.
|
||||
[Bug `2002005 <https://storyboard.openstack.org/#!/story/2002005>`_]
|
Loading…
Reference in New Issue
Block a user