Skip to content

Commit 99eccbf

Browse files
authored
Merge pull request #978 from stackhpc/zed-doc-known-issue-opensearch
Update upgrading docs to include Opensearch issue
2 parents aaecbcb + 1455b28 commit 99eccbf

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

doc/source/operations/upgrading.rst

+18
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)