Skip to content

Commit 467bb53

Browse files
authored
Merge pull request #90230 from wgabor0427/OSDOCS-13516-v415
OSDOCS-13516-v415 switched steps 7 and 8 under Restart the Cluster
2 parents 6aa423d + 1683227 commit 467bb53

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

modules/graceful-restart.adoc

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,13 @@ $ oc describe csr <csr_name> <1>
105105
$ oc adm certificate approve <csr_name>
106106
----
107107

108+
. After the control plane and compute nodes are ready, mark all the nodes in the cluster as schedulable by running the following command:
109+
+
110+
[source,terminal]
111+
----
112+
$ for node in $(oc get nodes -o jsonpath='{.items[*].metadata.name}'); do echo ${node} ; oc adm uncordon ${node} ; done
113+
----
114+
108115
. Verify that the cluster started properly.
109116

110117
.. Check that there are no degraded cluster Operators.
@@ -152,10 +159,4 @@ ip-10-0-250-100.ec2.internal Ready worker 69m v1.28.5
152159
+
153160
If the cluster did not start properly, you might need to restore your cluster using an etcd backup.
154161

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-
----
162+

0 commit comments

Comments
 (0)