Skip to content

Update upgrading docs to include Opensearch issue #978

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 8, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions doc/source/operations/upgrading.rst
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,24 @@ Known issues
* The OVN sync repair tool removes metadata ports, breaking OVN load balancers.
See `LP#2038091 <https://bugs.launchpad.net/neutron/+bug/2038091>`__.

* If you run ``kayobe overcloud service upgrade`` twice, it will cause shard
allocation to be disabled in OpenSearch. See `LP#2049512
<https://bugs.launchpad.net/kolla-ansible/+bug/2049512>`__ for details.

You can check if this is affecting your system with the following command. If
``transient.cluster.routing.allocation.enable=none`` is present, shard
allocation is disabled.

.. code-block:: console

curl http://<controller-ip>:9200/_cluster/settings

For now, the easiest way to fix this is to turn allocation back on:

.. code-block:: console

curl -X PUT http://<controller-ip>:9200/_cluster/settings -H 'Content-Type:application/json' -d '{"transient":{"cluster":{"routing":{"allocation":{"enable":"all"}}}}}'

Security baseline
=================

Expand Down