File tree Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments