Merge "Add config option to use system token in keystone tests"

This commit is contained in:
Zuul
2026-01-14 23:10:09 +00:00
committed by Gerrit Code Review
2 changed files with 14 additions and 1 deletions
@@ -0,0 +1,7 @@
---
features:
- |
Added a new config option in the `identity` section, `use_system_token`,
which will tell Tempest to use system scope token to test the
keystone APIs. By default is disabled which means Tempest will use project
scoped token.
+7 -1
View File
@@ -219,7 +219,13 @@ IdentityGroup = [
"identity-feature-enabled.security_compliance is set to "
"'True'. For more details, refer to keystone config "
"options "
"keystone.conf:security_compliance.minimum_password_age.")
"keystone.conf:security_compliance.minimum_password_age."),
cfg.BoolOpt('use_system_token',
default=False,
help="Keystone supports both system as well as project "
"scoped token. This config option tells tempest to "
"use the system scoped token for keystone identity "
"tests.")
]
service_clients_group = cfg.OptGroup(name='service-clients',