Backing up Rancher
In this section, you’ll learn how to back up Rancher running on any Kubernetes cluster. To backup Rancher installed with Docker, refer the instructions for single node backups
The backup-restore operator needs to be installed in the local cluster, and only backs up the Rancher app. The backup and restore operations are performed only in the local Kubernetes cluster.
Prerequisites
The Rancher version must be v2.5.0 and up.
1. Install the Rancher Backups operator
The backup storage location is an operator-level setting, so it needs to be configured when the Rancher Backups application is installed or upgraded.
Backups are created as .tar.gz files. These files can be pushed to S3 or Minio, or they can be stored in a persistent volume.
- In the upper left corner, click ☰ > Cluster Management.
- On the Clusters page, go to the
local
cluster and click Explore. Thelocal
cluster runs the Rancher server. - Click Apps & Marketplace > Charts.
- Click Rancher Backups.
- Click Install.
- Configure the default storage location. For help, refer to the storage configuration section.
- Click Install.
2. Perform a Backup
To perform a backup, a custom resource of type Backup must be created.
- In the upper left corner, click ☰ > Cluster Management.
- On the Clusters page, go to the
local
cluster and click Explore. - In the left navigation bar, click Rancher Backups > Backups.
- Click Create.
- Create the Backup with the form, or with the YAML editor.
- For configuring the Backup details using the form, click Create and refer to the configuration reference and to the examples.
For using the YAML editor, we can click Create > Create from YAML. Enter the Backup YAML. This example Backup custom resource would create encrypted recurring backups in S3. The app uses the
credentialSecretNamespace
value to determine where to look for the S3 backup secret:apiVersion: resources.cattle.io/v1
kind: Backup
metadata:
name: s3-recurring-backup
spec:
storageLocation:
s3:
credentialSecretName: s3-creds
credentialSecretNamespace: default
bucketName: rancher-backups
folder: rancher
region: us-west-2
endpoint: s3.us-west-2.amazonaws.com
resourceSetName: rancher-resource-set
encryptionConfigSecretName: encryptionconfig
schedule: "@every 1h"
retentionCount: 10
Note: When creating the Backup resource using YAML editor, the
resourceSetName
must be set torancher-resource-set
For help configuring the Backup, refer to the configuration reference and to the examples.
Important: The
rancher-backup
operator doesn’t save the EncryptionConfiguration file. The contents of the EncryptionConfiguration file must be saved when an encrypted backup is created, and the same file must be used when restoring from this backup.Click Create.
Result: The backup file is created in the storage location configured in the Backup custom resource. The name of this file is used when performing a restore.