We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dfee7f6 commit f4b9c87Copy full SHA for f4b9c87
modules/graceful-restart.adoc
@@ -149,5 +149,13 @@ ip-10-0-182-134.ec2.internal Ready worker 70m v1.29.4
149
ip-10-0-211-16.ec2.internal Ready master 82m v1.29.4
150
ip-10-0-250-100.ec2.internal Ready worker 69m v1.29.4
151
----
152
-
++
153
If the cluster did not start properly, you might need to restore your cluster using an etcd backup.
154
+
155
+. After the control plane and worker nodes are ready, mark all the nodes in the cluster as schedulable.
156
+Run the following command:
157
158
+[source,terminal]
159
+----
160
+for node in $(oc get nodes -o jsonpath='{.items[*].metadata.name}'); do echo ${node} ; oc adm uncordon ${node} ; done
161
0 commit comments