Skip to content

Commit bd15aaf

Browse files
authored
Merge pull request #45677 from rohennes/BZ2084113
Updates for 2084113
2 parents 344f403 + 6803bc1 commit bd15aaf

File tree

3 files changed

+85
-1
lines changed

3 files changed

+85
-1
lines changed

installing/index.adoc

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,17 @@ include::modules/installation-overview.adoc[leveloffset=+1]
1010

1111
include::modules/installation-process.adoc[leveloffset=+2]
1212

13+
include::modules/ipi-verifying-nodes-after-installation.adoc[leveloffset=+2]
14+
15+
[role="_additional-resources"]
16+
.Additional resources
17+
18+
* xref:../post_installation_configuration/bare-metal-configuration.adoc#getting-the-baremetalhost-resource_post-install-bare-metal-configuration[Getting the BareMetalHost resource]
19+
20+
* xref:../installing/installing_bare_metal_ipi/ipi-install-installation-workflow.adoc#ipi-install-troubleshooting-following-the-installation_ipi-install-installation-workflow[Following the installation]
21+
22+
* xref:../installing/validating-an-installation.adoc#validating-an-installation[Validating an installation]
23+
1324
[discrete]
1425
=== Installation scope
1526

modules/installation-process.adoc

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,4 +101,7 @@ Bootstrapping a cluster involves the following steps:
101101
. The control plane sets up the compute nodes.
102102
. The control plane installs additional services in the form of a set of Operators.
103103

104-
The result of this bootstrapping process is a fully running {product-title} cluster. The cluster then downloads and configures remaining components needed for the day-to-day operation, including the creation of compute machines in supported environments.
104+
The result of this bootstrapping process is a running {product-title} cluster. The cluster then downloads and configures remaining components needed for the day-to-day operation, including the creation of compute machines in supported environments.
105+
106+
107+
Lines changed: 70 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
// Module included in the following assemblies:
2+
//
3+
// * installing/index.adoc
4+
5+
:_module-type: PROCEDURE
6+
[id="ipi-verifying-nodes-after-installation_{context}"]
7+
= Verifying node state after installation
8+
9+
[role="_abstract"]
10+
The {product-title} installation completes when the following installation health checks are successful:
11+
12+
* The provisioning host can access the {product-title} web console.
13+
14+
* All control plane nodes are ready.
15+
16+
* All cluster Operators are available.
17+
18+
[NOTE]
19+
====
20+
After the installation completes, the specific cluster Operators responsible for the worker nodes continuously attempt to provision all worker nodes. It can take some time 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.
21+
====
22+
23+
After your installation completes, you can continue to monitor the condition of the nodes in your cluster using the following steps.
24+
25+
.Prerequisites
26+
* The installation program resolves successfully in the terminal.
27+
28+
.Procedure
29+
. Show the status of all worker nodes:
30+
31+
+
32+
[source,terminal]
33+
----
34+
$ oc get nodes
35+
----
36+
37+
+
38+
.Example output
39+
[source,terminal]
40+
----
41+
NAME STATUS ROLES AGE VERSION
42+
example-compute1.example.com Ready worker 13m v1.21.6+bb8d50a
43+
example-compute2.example.com Ready worker 13m v1.21.6+bb8d50a
44+
example-compute4.example.com Ready worker 14m v1.21.6+bb8d50a
45+
example-control1.example.com Ready master 52m v1.21.6+bb8d50a
46+
example-control2.example.com Ready master 55m v1.21.6+bb8d50a
47+
example-control3.example.com Ready master 55m v1.21.6+bb8d50a
48+
----
49+
50+
. Show the phase of all worker machine nodes:
51+
52+
+
53+
[source,terminal]
54+
----
55+
$ oc get machines -A
56+
----
57+
58+
+
59+
.Example output
60+
[source,terminal]
61+
----
62+
NAMESPACE NAME PHASE TYPE REGION ZONE AGE
63+
openshift-machine-api example-zbbt6-master-0 Running 95m
64+
openshift-machine-api example-zbbt6-master-1 Running 95m
65+
openshift-machine-api example-zbbt6-master-2 Running 95m
66+
openshift-machine-api example-zbbt6-worker-0-25bhp Running 49m
67+
openshift-machine-api example-zbbt6-worker-0-8b4c2 Running 49m
68+
openshift-machine-api example-zbbt6-worker-0-jkbqt Running 49m
69+
openshift-machine-api example-zbbt6-worker-0-qrl5b Running 49m
70+
----

0 commit comments

Comments
 (0)