diff --git a/doc/source/operations/octavia.rst b/doc/source/operations/octavia.rst index 80d7bdd25..e2ab74c4a 100644 --- a/doc/source/operations/octavia.rst +++ b/doc/source/operations/octavia.rst @@ -61,7 +61,7 @@ Access the database from a controller: docker exec -it mariadb bash mysql -u root -p octavia - # Enter the database password when promted. + # Enter the database password when prompted. List the load balancers to find the ID of the broken one(s): diff --git a/doc/source/operations/upgrading.rst b/doc/source/operations/upgrading.rst index c5215a4df..dffce4399 100644 --- a/doc/source/operations/upgrading.rst +++ b/doc/source/operations/upgrading.rst @@ -76,6 +76,17 @@ Some things to watch out for: [auth] tempest_roles = creator,member +* To check trusts for the _member_ role, you will need to list the role + assignments in the database, as only the trustor and trustee users can show + trust details from the CLI: + + .. code-block:: console + + openstack trust list + docker exec -it mariadb bash + mysql -u root -p keystone + # Enter the database password when prompted. + SELECT * FROM trust_role WHERE trust_id = '' AND role_id = '<_member_-role-id>'; OVN enabled by default ----------------------