summaryrefslogtreecommitdiff
path: root/tempest
diff options
context:
space:
mode:
authorArx Cruz <arxcruz@redhat.com>2023-04-28 15:35:14 +0200
committerArx Cruz <arxcruz@redhat.com>2023-04-28 16:00:00 +0200
commit05c805f7f3b6943213624160a507ca63a3eab5d7 (patch)
tree427bd81c8f3c390ffd18c1e6adc93215ad4d5549 /tempest
parente64f4c2b07e048ea77d08a29b7afbd17448abc32 (diff)
downloadtempest-05c805f7f3b6943213624160a507ca63a3eab5d7.tar.gz
Update v3_endpoint_type to use public
The default endpoint type for OpenStack Identity should be the public version, and it was something missed for a while. Change-Id: Ib679fb21d8d815317ecdd03e40dfe16e6ef3915e
Diffstat (limited to 'tempest')
-rw-r--r--tempest/config.py6
1 files changed, 2 insertions, 4 deletions
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."),