1
0
mirror of https://github.com/openshift/openshift-docs.git synced 2026-02-05 12:46:18 +01:00
Files
openshift-docs/modules/rosa-upgrading-cli-tutorial.adoc
AedinC 878748d637 OSDOCS-9533:Updates for preflight cluster upgrades for ROSA Classic
changed via to through

applied QE suggestions

applied PM suggestions

applied PM latest comments

applied QE latest comments

applied merge reviewers suggestions
2024-08-26 19:37:11 +01:00

107 lines
3.6 KiB
Plaintext

// Module included in the following assemblies:
//
// * rosa_upgrading/rosa-upgrading.adoc
// * rosa_upgrading/rosa-upgrading-sts.adoc
ifeval::["{context}" == "rosa-upgrading-sts"]
:sts:
endif::[]
ifeval::["{context}" == "rosa-hcp-upgrading"]
:rosa-hcp:
endif::[]
:_mod-docs-content-type: PROCEDURE
[id="rosa-upgrading-cli_{context}"]
= Upgrading with the ROSA CLI
You can use the ROSA CLI (`rosa`) to upgrade a {product-title} (ROSA) cluster either immediately within one hour or at a future time.
.Prerequisites
* You have installed and configured the latest ROSA CLI on your installation host.
* Your {product-title} cluster is in a `Ready` state.
.Procedure
. To verify the current version of your cluster, enter the following command:
+
[source,terminal]
----
$ rosa describe cluster --cluster=<cluster_name|cluster_id> <1>
----
<1> Replace `<cluster_name|cluster_id>` with the cluster name or the ID of the cluster.
. To verify that an upgrade is available, enter the following command:
+
[source,terminal]
----
$ rosa list upgrade --cluster=<cluster_name|cluster_id>
----
+
The command returns a list of versions to which the cluster can be upgraded, including a recommended version. The recommendation is based on the conditional update risks. Each known risk might apply to all clusters or only clusters matching certain conditions. Refer to the OpenShift release notes to evaluate, validate and determine the appropriate version to upgrade to.
. To upgrade the cluster to a specified version immediately within the next hour, enter the following command:
+
ifndef::rosa-hcp[]
[source,terminal]
----
$ rosa upgrade cluster --cluster=<cluster_name|cluster_id> --version <version-id>
----
endif::rosa-hcp[]
ifdef::rosa-hcp[]
[source,terminal]
[source,terminal]
----
$ rosa upgrade cluster --cluster=<cluster_name|cluster_id> --control-plane
----
endif::rosa-hcp[]
+
[NOTE]
====
If you are upgrading an AWS Security Token Service (STS) cluster, this command starts an interactive IAM Roles/policies upgrade mode process that verifies the account and operator role policies for the chosen cluster are compatible with the target version of the upgrade. If the policies are not compatible with the chosen upgrade version, the CLI automatically upgrades them in auto mode.
====
+
The cluster is scheduled for an immediate upgrade as denoted by the _Scheduled Time_. The upgrade will begin within one hour from the scheduled time.
+
. Alternatively, to upgrade the cluster at a future time in UTC, enter the following command:
+
[source,terminal]
----
$ rosa upgrade cluster --cluster=<cluster_name|cluster_id> \
--version <version-id> \
--schedule-date yyyy-mm-dd \
--schedule-time HH:mm
----
+
. To customize the grace period for every node to be drained during the cluster upgrade, enter the following command:
+
[source,terminal]
----
$ rosa upgrade cluster --cluster=<cluster_name|cluster_id> \
--version <version-id> \
--node-drain-grace-period 15 minutes
----
+
.Verification
. You can view the status of the upgrade by entering the following command, which shows both the status (scheduled or started) and the scheduled time.
+
[source,terminal]
----
$ rosa list upgrade --cluster=<cluster_name|cluster_id>
----
+
.Example output
[source,terminal]
----
VERSION NOTES
4.15.14 recommended - scheduled for 2024-06-02 15:00 UTC
4.15.13
----
You will receive email notifications confirming the scheduling, beginning, and completion of the cluster upgrade.
.Troubleshooting
* Sometimes a scheduled upgrade does not trigger. See link:https://access.redhat.com/solutions/6648291[Upgrade maintenance cancelled] for more information.