Skip to content

Commit 5fb85d9

Browse files
authored
Merge pull request #894 from stackhpc/steps-on-checking-keystone-changes
2023.1 upgrade: explain steps to check trust for _member_ role
2 parents c122b82 + 064e23c commit 5fb85d9

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

doc/source/operations/octavia.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ Access the database from a controller:
6161
6262
docker exec -it mariadb bash
6363
mysql -u root -p octavia
64-
# Enter the database password when promted.
64+
# Enter the database password when prompted.
6565
6666
List the load balancers to find the ID of the broken one(s):
6767

doc/source/operations/upgrading.rst

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,17 @@ Some things to watch out for:
7676
7777
[auth]
7878
tempest_roles = creator,member
79+
* To check trusts for the _member_ role, you will need to list the role
80+
assignments in the database, as only the trustor and trustee users can show
81+
trust details from the CLI:
82+
83+
.. code-block:: console
84+
85+
openstack trust list
86+
docker exec -it mariadb bash
87+
mysql -u root -p keystone
88+
# Enter the database password when prompted.
89+
SELECT * FROM trust_role WHERE trust_id = '<trust-id>' AND role_id = '<_member_-role-id>';
7990
8091
OVN enabled by default
8192
----------------------

0 commit comments

Comments
 (0)