summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZuul <zuul@review.opendev.org>2023-04-30 12:50:34 +0000
committerGerrit Code Review <review@openstack.org>2023-04-30 12:50:34 +0000
commit9f0eed289437456a56ff78a3e6d36ac584f934bf (patch)
tree211906946e4c59fe07dfd225821815c82778a42b
parent90e2c569ed15c87214472b774aca6f42255c7321 (diff)
parent05c805f7f3b6943213624160a507ca63a3eab5d7 (diff)
downloadtempest-9f0eed289437456a56ff78a3e6d36ac584f934bf.tar.gz
Merge "Update v3_endpoint_type to use public"
-rw-r--r--releasenotes/notes/update-v3-entrypoint-29d56c902439cc03.yaml6
-rw-r--r--tempest/config.py6
2 files changed, 8 insertions, 4 deletions
diff --git a/releasenotes/notes/update-v3-entrypoint-29d56c902439cc03.yaml b/releasenotes/notes/update-v3-entrypoint-29d56c902439cc03.yaml
new file mode 100644
index 000000000..363e59fd5
--- /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/config.py b/tempest/config.py
index 551578ee4..89161dc9d 100644
--- a/tempest/config.py
+++ b/tempest/config.py
@@ -153,13 +153,11 @@ IdentityGroup = [
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."),