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/contributor/package-updates.rst
+4-4
Original file line number
Diff line number
Diff line change
@@ -7,13 +7,13 @@ This section describes the Release Train process of creating new package reposit
7
7
Preparations
8
8
============
9
9
10
-
1. Before building images, you should check for any outstanding PRs into the earliest supported release. Below are the links for the 2023.1 (Antelope) branches.
10
+
1. Before building images, you should check for any outstanding PRs into the earliest supported release. Below are the links for the 2024.1 (Caracal) branches.
WHERE application_credential_role.application_credential_id = application_credential.internal_id
108
-
AND application_credential_role.role_id = role.id
109
-
);
110
-
111
-
* If you have overwritten ``[auth] tempest_roles`` in your Tempest config, such
112
-
as to add the ``creator`` role for Barbican, you will need to also add the
113
-
``member role``. eg:
114
-
115
-
.. code-block:: ini
116
-
117
-
[auth]
118
-
tempest_roles = creator,member
119
-
* To check trusts for the _member_ role, you will need to list the role
120
-
assignments in the database, as only the trustor and trustee users can show
121
-
trust details from the CLI:
122
-
123
-
.. code-block:: console
124
-
125
-
openstack trust list
126
-
docker exec -it mariadb bash
127
-
mysql -u root -p keystone
128
-
# Enter the database password when prompted.
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
138
-
139
-
OVN enabled by default
140
-
----------------------
141
-
142
-
OVN is now enabled by default in StackHPC Kayobe Configuration. This change
143
-
was made to align with our standard deployment configuration.
144
-
145
-
There is currently not a tested migration path from OVS to OVN on a running
146
-
system. If you are using a Neutron plugin other than ML2/OVN, set
147
-
``kolla_enable_ovn`` to ``false`` in ``etc/kayobe/kolla.yml``.
0 commit comments