Skip to content

Commit 1455b28

Browse files
committed
Update upgrading docs to include Opensearch issue
Adding the known issue with Opensearch to the upgrading docs from the 2023.1 docs.
1 parent aaecbcb commit 1455b28

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

doc/source/operations/upgrading.rst

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,24 @@ Known issues
106106
* The OVN sync repair tool removes metadata ports, breaking OVN load balancers.
107107
See `LP#2038091 <https://bugs.launchpad.net/neutron/+bug/2038091>`__.
108108

109+
* If you run ``kayobe overcloud service upgrade`` twice, it will cause shard
110+
allocation to be disabled in OpenSearch. See `LP#2049512
111+
<https://bugs.launchpad.net/kolla-ansible/+bug/2049512>`__ for details.
112+
113+
You can check if this is affecting your system with the following command. If
114+
``transient.cluster.routing.allocation.enable=none`` is present, shard
115+
allocation is disabled.
116+
117+
.. code-block:: console
118+
119+
curl http://<controller-ip>:9200/_cluster/settings
120+
121+
For now, the easiest way to fix this is to turn allocation back on:
122+
123+
.. code-block:: console
124+
125+
curl -X PUT http://<controller-ip>:9200/_cluster/settings -H 'Content-Type:application/json' -d '{"transient":{"cluster":{"routing":{"allocation":{"enable":"all"}}}}}'
126+
109127
Security baseline
110128
=================
111129

0 commit comments

Comments
 (0)