Merge "Wait until SSHABLE in volumes_extend test"
diff --git a/releasenotes/notes/update-v3-entrypoint-29d56c902439cc03.yaml b/releasenotes/notes/update-v3-entrypoint-29d56c902439cc03.yaml
new file mode 100644
index 0000000..363e59f
--- /dev/null
+++ b/releasenotes/notes/update-v3-entrypoint-29d56c902439cc03.yaml
@@ -0,0 +1,6 @@
+---
+upgrade:
+ - |
+ Update default value of config option ``CONF.identity.v3_entrypoint_type``
+ from adminURL to public. This was deprecated in Q release, and was missed.
+ The default entrypoint used by tempest should be the public one.
diff --git a/tempest/api/compute/base.py b/tempest/api/compute/base.py
index 260d4e0..b1bfac7 100644
--- a/tempest/api/compute/base.py
+++ b/tempest/api/compute/base.py
@@ -462,9 +462,11 @@
self, server_id, new_flavor_id, wait_until='ACTIVE', **kwargs
):
"""resize and confirm_resize an server, waits for it to be ACTIVE."""
- self.servers_client.resize_server(server_id, new_flavor_id, **kwargs)
- waiters.wait_for_server_status(self.servers_client, server_id,
- 'VERIFY_RESIZE')
+ body = self.servers_client.resize_server(
+ server_id, new_flavor_id, **kwargs)
+ waiters.wait_for_server_status(
+ self.servers_client, server_id, 'VERIFY_RESIZE',
+ request_id=body.response['x-openstack-request-id'])
self.servers_client.confirm_resize_server(server_id)
waiters.wait_for_server_status(
diff --git a/tempest/config.py b/tempest/config.py
index 551578e..89161dc 100644
--- a/tempest/config.py
+++ b/tempest/config.py
@@ -153,13 +153,11 @@
help="The public endpoint type to use for OpenStack Identity "
"(Keystone) API v2"),
cfg.StrOpt('v3_endpoint_type',
- default='adminURL',
+ default='public',
choices=['public', 'admin', 'internal',
'publicURL', 'adminURL', 'internalURL'],
help="The endpoint type to use for OpenStack Identity "
- "(Keystone) API v3. The default value adminURL is "
- "deprecated and will be modified to publicURL in "
- "the next release."),
+ "(Keystone) API v3."),
cfg.StrOpt('admin_role',
default='admin',
help="Role required to administrate keystone."),