
microversion 2.98 changed the GET and GET list details API response to expand the image field - https://review.opendev.org/c/openstack/nova/+/939649 but when we change the views/servers.py then update server and rebuild server API response also gets updated. - https://review.opendev.org/c/openstack/nova/+/939649/12/nova/api/openstack/compute/views/servers.py#595 The microversion change actually changed the response for the update and rebuild API but did not update the documentation about this change. Neither added test for rebuild and update which verify the response change. Since microversion 2.75, we have made all these 4 APIs response consistent. Implements: blueprint image-properties-in-server-show Change-Id: Ifc2edc59c601391a31fd8953c742969e5b368767
11 lines
501 B
YAML
11 lines
501 B
YAML
---
|
|
features:
|
|
- |
|
|
The 2.98 microversion has been added. This microversion adds support for
|
|
including image properties as new ``properties`` subkey under the struct at
|
|
the existing ``image`` key in the response for ``GET /servers/{server_id}``
|
|
(server show), ``PUT /servers/{server_id}``
|
|
(server update), and ``GET /servers/detail`` (list server --long) APIs.
|
|
Also the same is included in rebuild case of
|
|
``POST /server/{server_id}/action`` (server rebuild) API response.
|