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:
61
61
62
62
docker exec -it mariadb bash
63
63
mysql -u root -p octavia
64
- # Enter the database password when promted .
64
+ # Enter the database password when prompted .
65
65
66
66
List the load balancers to find the ID of the broken one(s):
67
67
Original file line number Diff line number Diff line change @@ -76,6 +76,17 @@ Some things to watch out for:
76
76
77
77
[auth]
78
78
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>';
79
90
80
91
OVN enabled by default
81
92
----------------------
You can’t perform that action at this time.
0 commit comments