Rollbacks
This page outlines how to roll back Rancher to a previous version after an upgrade.
|
Follow the instructions from this page when:
-
The running Rancher instance has been upgraded to a newer version after the backup was made.
-
The upstream (local) cluster is the same as where the backup was made.
|
To roll back Rancher to a lower/previous version, use the Rancher Backups application and restore Rancher from backup.
Rancher has to be started with the lower/previous version after a rollback.
A restore is performed by creating a Restore custom resource.
Important:
|
Step 1: Create the Restore Custom Resource
-
Click ☰ > Cluster Management.
-
Go to the local cluster and click Explore.
-
In the left navigation bar, click
.
If the Rancher Backups app is not visible, you will need to install it from the Charts page in Apps. Refer here for more information. |
-
Click Create.
-
Create the Restore with the form or with YAML. For help creating the Restore resource using the online form, refer to the configuration reference and to the examples.
-
To use the YAML editor, you can click
Enter the Restore YAML. The following is an example Restore custom resource:apiVersion: resources.cattle.io/v1 kind: Restore metadata: name: restore-migration spec: backupFilename: backup-b0450532-cee1-4aa1-a881-f5f48a007b1c-2020-09-15T07-27-09Z.tar.gz encryptionConfigSecretName: encryptionconfig storageLocation: s3: credentialSecretName: s3-creds credentialSecretNamespace: default bucketName: rancher-backups folder: rancher region: us-west-2 endpoint: s3.us-west-2.amazonaws.com
For help configuring the Restore, refer to the configuration reference and to the examples.
-
Click Create.
Result: The backup file is created and updated to the target storage location. The resources are restored in this order:
-
Custom Resource Definitions (CRDs)
-
Cluster-scoped resources
-
Namespaced resources
To check how the restore is progressing, you can check the logs of the operator. Follow these steps to get the logs:
kubectl get pods -n cattle-resources-system
kubectl logs -n cattle-resources-system -f
Step 2: Roll Back to a Previous Rancher Version
Rancher can be rolled back using the Helm CLI. To roll back to the previous version:
helm rollback rancher -n cattle-system
If the previous revision is not the intended target, you can specify a revision to roll back to. To see the deployment history:
helm history rancher -n cattle-system
When the target revision is determined, perform the rollback. This example will roll back to revision 3
:
helm rollback rancher 3 -n cattle-system