File tree 1 file changed +18
-0
lines changed
1 file changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -106,6 +106,24 @@ Known issues
106
106
* The OVN sync repair tool removes metadata ports, breaking OVN load balancers.
107
107
See `LP#2038091 <https://bugs.launchpad.net/neutron/+bug/2038091 >`__.
108
108
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
+
109
127
Security baseline
110
128
=================
111
129
You can’t perform that action at this time.
0 commit comments