We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3cd0c67 + 5f6a449 commit a240b54Copy full SHA for a240b54
modules/graceful-restart.adoc
@@ -105,12 +105,11 @@ $ oc describe csr <csr_name> <1>
105
$ oc adm certificate approve <csr_name>
106
----
107
108
-. After the control plane and worker nodes are ready, mark all the nodes in the cluster as schedulable.
109
-Run the following command:
+. After the control plane and compute nodes are ready, mark all the nodes in the cluster as schedulable by running the following command:
110
+
111
[source,terminal]
112
113
-for node in $(oc get nodes -o jsonpath='{.items[*].metadata.name}'); do echo ${node} ; oc adm uncordon ${node} ; done
+$ for node in $(oc get nodes -o jsonpath='{.items[*].metadata.name}'); do echo ${node} ; oc adm uncordon ${node} ; done
114
115
116
. Verify that the cluster started properly.
0 commit comments