Skip to content

Commit 5ed00ac

Browse files
committed
Document OpenSearch known issue for 2024.1 upgrade
1 parent 3137cad commit 5ed00ac

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

doc/source/operations/upgrading-openstack.rst

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,23 @@ Known issues
137137
applying package updates. This will happen automatically as a post hook when
138138
running the ``kayobe overcloud host package update`` command.
139139

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+
140157
Security baseline
141158
=================
142159

0 commit comments

Comments
 (0)