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
@@ -127,6 +127,14 @@ Some things to watch out for:
127
127
mysql -u root -p keystone
128
128
# Enter the database password when prompted.
129
129
SELECT * FROM trust_role WHERE trust_id = '<trust-id>' AND role_id = '<_member_-role-id>';
130
+
* Policies may require the ``reader`` role rather than the non-standardised
131
+
``observer`` role. The following error was observed in Horizon: ``Policy doesn’t allow os_compute_api:os-simple-tenant-usage:show to be performed``,
132
+
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``
133
+
config option set. A one liner is shown below (or update your projects config):
134
+
135
+
.. code-block:: console
136
+
137
+
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