Skip to content

2023.1 upgrade: explain steps to check trust for _member_ role #894

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 25, 2024
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