@@ -68,6 +68,14 @@ Some things to watch out for:
68
68
will not be granted those roles. This may include the ``reader `` role, which
69
69
is referenced in some of the new secure RBAC policies. See `Keystone bug
70
70
2030061 <https://bugs.launchpad.net/keystone/+bug/2030061> `_.
71
+ * If you have overwritten ``[auth] tempest_roles `` in your Tempest config, such
72
+ as to add the ``creator `` role for Barbican, you will need to also add the
73
+ ``member role ``. eg:
74
+
75
+ .. code-block :: ini
76
+
77
+ [auth]
78
+ tempest_roles = creator,member
71
79
72
80
OVN enabled by default
73
81
----------------------
@@ -107,6 +115,29 @@ Known issues
107
115
* The OVN sync repair tool removes metadata ports, breaking OVN load balancers.
108
116
See `LP#2038091 <https://bugs.launchpad.net/neutron/+bug/2038091 >`__.
109
117
118
+ * When you try to generate config before the 2023.1 upgrade (i.e. using 2023.1
119
+ Kolla-Ansible but still running Zed kolla-toolbox), it will fail on Octavia.
120
+ This patch is needed to fix this:
121
+ https://review.opendev.org/c/openstack/kolla-ansible/+/905500
122
+
123
+ * If you run ``kayobe overcloud service upgrade `` twice, it will cause shard
124
+ allocation to be disabled in OpenSearch. See `LP#2049512
125
+ <https://bugs.launchpad.net/kolla-ansible/+bug/2049512> `__ for details.
126
+
127
+ You can check if this is affecting your system with the following command. If
128
+ ``transient.cluster.routing.allocation.enable=none `` is present, shard
129
+ allocation is disabled.
130
+
131
+ .. code-block :: console
132
+
133
+ curl http://<controller-ip>:9200/_cluster/settings
134
+
135
+ For now, the easiest way to fix this is to turn allocation back on:
136
+
137
+ .. code-block :: console
138
+
139
+ curl -X PUT http://<controller-ip>:9200/_cluster/settings -H 'Content-Type:application/json' -d '{"transient":{"cluster":{"routing":{"allocation":{"enable":"all"}}}}}'
140
+
110
141
Security baseline
111
142
=================
112
143
0 commit comments