Change auth.tempest_roles default value

This commit changes the default value of the following option
from
CONF.auth.tempest_roles _member_
to
CONF.auth.tempest_roles member

Change-Id: Ic8263d0bfd9b093aab7f1779d24b19ca2a9b30bd
This commit is contained in:
Martin Kopec 2021-09-23 15:31:30 +00:00
parent 2bf7bf6a84
commit f4f9f8f6d4
2 changed files with 11 additions and 1 deletions

View File

@ -90,7 +90,7 @@ def load_basic_defaults(conf):
("alt_project_name", "alt_demo")
],
"auth": [
("tempest_roles", "_member_"),
("tempest_roles", "member"),
("admin_username", "admin"),
("admin_project_name", "admin"),
("admin_domain_name", "Default")

View File

@ -0,0 +1,10 @@
---
upgrade:
- |
The following option has changed its default value from
* ``CONF.auth.tempest_roles _member_``
to
* ``CONF.auth.tempest_roles member``