File tree Expand file tree Collapse file tree 1 file changed +8
-7
lines changed Expand file tree Collapse file tree 1 file changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -105,6 +105,13 @@ $ oc describe csr <csr_name> <1>
105
105
$ oc adm certificate approve <csr_name>
106
106
----
107
107
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
+
108
115
. Verify that the cluster started properly.
109
116
110
117
.. 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
152
159
+
153
160
If the cluster did not start properly, you might need to restore your cluster using an etcd backup.
154
161
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
+
You can’t perform that action at this time.
0 commit comments