mirror of
https://github.com/openshift/openshift-docs.git
synced 2026-02-05 12:46:18 +01:00
35 lines
938 B
Plaintext
35 lines
938 B
Plaintext
// Module included in the following assemblies:
|
|
//
|
|
// * rosa_learning/creating_cluster_workshop/learning-getting-started-hcp-for-hcp.adoc
|
|
:_mod-docs-content-type: PROCEDURE
|
|
[id="learning-getting-started-cluster-status_{context}"]
|
|
= Checking the installation status
|
|
|
|
[role="_abstract"]
|
|
You can check the status of your cluster by using the {rosa-cli-first}.
|
|
|
|
.Procedure
|
|
. Run one of the following commands to check the status of the cluster:
|
|
+
|
|
* For a detailed view of the cluster status, run:
|
|
+
|
|
[source,terminal]
|
|
----
|
|
$ rosa describe cluster --cluster $CLUSTER_NAME
|
|
----
|
|
+
|
|
* For an abridged view of the cluster status, run:
|
|
+
|
|
[source,terminal]
|
|
----
|
|
$ rosa list clusters
|
|
----
|
|
+
|
|
* To watch the log as it progresses, run:
|
|
+
|
|
[source,terminal]
|
|
----
|
|
$ rosa logs install --cluster $CLUSTER_NAME --watch
|
|
----
|
|
|
|
. Once the state changes to “ready” your cluster is installed. It might take a few more minutes for the worker nodes to come online. |