You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/source/operations/upgrading.rst
+8Lines changed: 8 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -87,6 +87,14 @@ Some things to watch out for:
87
87
mysql -u root -p keystone
88
88
# Enter the database password when prompted.
89
89
SELECT * FROM trust_role WHERE trust_id = '<trust-id>' AND role_id = '<_member_-role-id>';
90
+
* Policies may require the ``reader`` role rather than the non-standardised
91
+
``observer`` role. The following error was observed in Horizon: ``Policy doesn’t allow os_compute_api:os-simple-tenant-usage:show to be performed``,
92
+
when the user only had the observer role in the project. It is best to keep the observer role until all projects have the ``enforce_new_defaults``
93
+
config option set. A one liner is shown below (or update your projects config):
94
+
95
+
.. code-block:: console
96
+
97
+
openstack role assignment list --effective --role observer -f value -c User -c Project | while read line; do echo $line | xargs bash -c 'openstack role add --user $1 --project $2 reader' _; done
0 commit comments