Stein Series Release Notes¶
13.0.2¶
Notes de mises à jours¶
The
--hint
option for theboot
command expects a key-value argument. Previously, if this was not the case, the argument would be silently ignored. It will now raise an error.
13.0.0¶
Nouvelles fonctionnalités¶
From microversion 2.69 the results of
nova list
,nova show
andnova service-list
may contain missing information in their outputs when there are partial infrastructure failure periods in the deployment. See Handling Down Cells for more information on the missing keys/info.
Added support for microversion 2.71 which outputs the server_groups field in the following commands:
nova show
nova rebuild
Support has been added for microversion 2.72. This microversion allows creating a server using the
nova boot
command with pre-existing ports having aresource_request
value to enable features such as guaranteed minimum bandwidth for quality of service.
Added support for microversion 2.70 which outputs the Tag field in the following commands:
nova interface-list
nova interface-attach
nova volume-attachments
nova volume-attach
Notes de mises à jours¶
Added support for microversion 2.68, which removes the
--force
option from thenova evacuate
,nova live-migration
,nova host-evacuate
andnova host-evacuate-live
commands.
The
nova interface-attach
command shows output of its result when it is successful.
The following methods return a
NetworkInterface
object instead of aServer
object.The
interface_attach
method in thenovaclient.v2.Server
classThe
interface_attach
method in thenovaclient.v2.ServerManager
class
Other Notes¶
The
novaclient.v2.servers.Server.networks
property method now returns an OrderedDict where the keys are sorted in natural (ascending) order. This means thenova show
andnova list
output will have predictable sort order on the networks attached to a server.
12.0.0¶
Notes de mises à jours¶
All modules of
novaclient.v2.contrib
have been removed.
The
only_contrib
parameter for thenovaclient.client.discover_extensions
method is no longer valid.
Notes dépréciées¶
The
--instance-name
option has been deprecated from thenova list
command because the instance name query parameter is ignored by the compute REST API.
11.1.0¶
Nouvelles fonctionnalités¶
Added support for microversion 2.66 which adds
changes-before
parameter to the servers, os-instance-actions or os-migrations APIs.This parameter (
changes-before
) does not change any read-deleted behavior in the os-instance-actions or os-migrations APIs.Like the
changes-since
filter, thechanges-before
filter will also return deleted servers.The
--changes-before
options is added to thenova list
,nova instance-action-list
andnova migration-list
CLIs.
Support is added for the 2.67 microversion which allows specifying a
volume_type
with the--block-device
option on thenova boot
command. Thenovaclient.v2.servers.ServerManager.create()
method now also supports avolume_type
entry in theblock_device_mapping_v2
parameter.
Bug Fixes¶
The user data argument in the
nova rebuild
command was passing the filename as userdata. Now this passes the contents of the file as intended.