Added support for Nova microversion 2.16

Added support for new host_status attribute in endpoints
servers/detail and servers/{server_id}.

Partially implements blueprint get-valid-server-state

Change-Id: If72fbcaa02267077dc082a7557c593f35474c4bb
This commit is contained in:
Tomi Juvonen
2016-01-18 13:27:16 +02:00
parent 7cc26eee72
commit 48605fcb43
2 changed files with 2 additions and 1 deletions

View File

@@ -25,4 +25,4 @@ API_MIN_VERSION = api_versions.APIVersion("2.1")
# when client supported the max version, and bumped sequentially, otherwise
# the client may break due to server side new version may include some
# backward incompatible change.
API_MAX_VERSION = api_versions.APIVersion("2.15")
API_MAX_VERSION = api_versions.APIVersion("2.16")

View File

@@ -2555,6 +2555,7 @@ class ShellTest(utils.TestCase):
# TODO(andreykurilin): remove 12 when 1522424 will be resolved
12, # doesn't require any changes in novaclient
15, # doesn't require any changes in novaclient
16, # doesn't require any changes in novaclient
])
versions_supported = set(range(0,
novaclient.API_MAX_VERSION.ver_minor + 1))