Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion doc/source/operations/octavia.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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):

Expand Down
11 changes: 11 additions & 0 deletions doc/source/operations/upgrading.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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 = '<trust-id>' AND role_id = '<_member_-role-id>';

OVN enabled by default
----------------------
Expand Down