Skip to content

Commit bfcadab

Browse files
committed
add the uncordon info
1 parent 05210dc commit bfcadab

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

articles/operator-nexus/howto-cluster-runtime-upgrade.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -152,5 +152,16 @@ Once the cordon and drain process of the tenant cluster node is completed, the u
152152

153153
It's important to note that the Nexus Kubernetes cluster node won't be shut down after the cordon and drain process. The BMH is rebooted with the new image as soon as all the Nexus Kubernetes cluster nodes are cordoned and drained, after 10 minutes if the drain process isn't completed. Additionally, the cordon and drain is not initiated for power-off or restart actions of the BMH; it's exclusively activated only during a runtime upgrade.
154154

155+
It is important to note that following the runtime upgrade, there could be instance where the Nexus Kubernetes Cluster node is unschedulable. For such scenarios, you can manually uncordon the node by running the following commands using [connectedk8s proxy.](./includes/kubernetes-cluster/cluster-connect.md)
156+
157+
```
158+
kubectl get nodes | grep SchedulingDisabled > /dev/null
159+
if [ $? -eq 0 ]; then
160+
for node in $(kubectl get nodes | grep SchedulingDisabled | awk '{print $1}'); do
161+
kubectl uncordon $node
162+
done
163+
fi
164+
```
165+
155166
<!-- LINKS - External -->
156167
[installation-instruction]: https://aka.ms/azcli

0 commit comments

Comments
 (0)