File tree Expand file tree Collapse file tree 2 files changed +12
-1
lines changed Expand file tree Collapse file tree 2 files changed +12
-1
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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----------------------
You can’t perform that action at this time.
0 commit comments