mirror of
https://github.com/openshift/openshift-docs.git
synced 2026-02-05 12:46:18 +01:00
66 lines
2.7 KiB
Plaintext
66 lines
2.7 KiB
Plaintext
// Module included in the following assemblies:
|
|
//
|
|
// * installing/overview/index.adoc
|
|
|
|
:_module-type: PROCEDURE
|
|
[id="ipi-verifying-nodes-after-installation_{context}"]
|
|
= Verifying node state after installation
|
|
|
|
The {product-title} installation completes when the following installation health checks are successful:
|
|
|
|
* The provisioner can access the {product-title} web console.
|
|
|
|
* All control plane nodes are ready.
|
|
|
|
* All cluster Operators are available.
|
|
|
|
[NOTE]
|
|
====
|
|
After the installation completes, the specific cluster Operators responsible for the worker nodes continuously attempt to provision all worker nodes. Some time is required before all worker nodes report as `READY`. For installations on bare metal, wait a minimum of 60 minutes before troubleshooting a worker node. For installations on all other platforms, wait a minimum of 40 minutes before troubleshooting a worker node. A `DEGRADED` state for the cluster Operators responsible for the worker nodes depends on the Operators' own resources and not on the state of the nodes.
|
|
====
|
|
|
|
After your installation completes, you can continue to monitor the condition of the nodes in your cluster.
|
|
|
|
.Prerequisites
|
|
* The installation program resolves successfully in the terminal.
|
|
|
|
.Procedure
|
|
. Show the status of all worker nodes:
|
|
+
|
|
[source,terminal]
|
|
----
|
|
$ oc get nodes
|
|
----
|
|
+
|
|
.Example output
|
|
[source,terminal]
|
|
----
|
|
NAME STATUS ROLES AGE VERSION
|
|
example-compute1.example.com Ready worker 13m v1.21.6+bb8d50a
|
|
example-compute2.example.com Ready worker 13m v1.21.6+bb8d50a
|
|
example-compute4.example.com Ready worker 14m v1.21.6+bb8d50a
|
|
example-control1.example.com Ready master 52m v1.21.6+bb8d50a
|
|
example-control2.example.com Ready master 55m v1.21.6+bb8d50a
|
|
example-control3.example.com Ready master 55m v1.21.6+bb8d50a
|
|
----
|
|
|
|
. Show the phase of all worker machine nodes:
|
|
+
|
|
[source,terminal]
|
|
----
|
|
$ oc get machines -A
|
|
----
|
|
+
|
|
.Example output
|
|
[source,terminal]
|
|
----
|
|
NAMESPACE NAME PHASE TYPE REGION ZONE AGE
|
|
openshift-machine-api example-zbbt6-master-0 Running 95m
|
|
openshift-machine-api example-zbbt6-master-1 Running 95m
|
|
openshift-machine-api example-zbbt6-master-2 Running 95m
|
|
openshift-machine-api example-zbbt6-worker-0-25bhp Running 49m
|
|
openshift-machine-api example-zbbt6-worker-0-8b4c2 Running 49m
|
|
openshift-machine-api example-zbbt6-worker-0-jkbqt Running 49m
|
|
openshift-machine-api example-zbbt6-worker-0-qrl5b Running 49m
|
|
----
|