File tree Expand file tree Collapse file tree 1 file changed +17
-0
lines changed Expand file tree Collapse file tree 1 file changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -137,6 +137,23 @@ Known issues
137
137
applying package updates. This will happen automatically as a post hook when
138
138
running the ``kayobe overcloud host package update `` command.
139
139
140
+ * After upgrading OpenSearch to the latest 2023.1 container image, we have seen
141
+ cluster routing allocation be disabled on some systems. See bug for details:
142
+ https://bugs.launchpad.net/kolla-ansible/+bug/2085943.
143
+ This will cause the "Perform a flush" handler to fail during the 2024.1
144
+ OpenSearch upgrade. To workaround this, you can run the following PUT request
145
+ to enable allocation again:
146
+
147
+ ..code-block:: console
148
+
149
+ curl -X PUT "https://<kolla-vip>:9200/_cluster/settings?pretty" -H 'Content-Type: application/json' -d'
150
+ {
151
+ "transient" : {
152
+ "cluster.routing.allocation.enable" : "all"
153
+ }
154
+ }
155
+ '
156
+
140
157
Security baseline
141
158
=================
142
159
You can’t perform that action at this time.
0 commit comments