This topic explains how to back up and restore the workloads and dynamic storage volumes hosted on Tanzu Kubernetes Grid (TKG) workload clusters for TKG with a standalone management cluster.
To back up and restore cluster infrastructure, the standalone management cluster and workload cluster objects themselves, see Back Up and Restore Management and Workload Cluster Infrastructure.
To back up and restore vSphere with Tanzu clusters, including Supervisor Clusters and the workload clusters that they create, see Backing Up and Restoring vSphere with Tanzu in the VMware vSphere 8.0 Documentation.
You can use Velero, an open source community standard tool, to back up and restore TKG standalone management cluster infrastructure and workloads.
Velero supports a variety of storage providers to store its backups. Velero also supports:
A Tanzu Kubernetes Grid subscription includes support for VMware’s tested, compatible distribution of Velero available from the Tanzu Kubernetes Grid downloads page.
To back up and restore TKG clusters, you need:
After you complete the prerequisites above, you can also use Velero to migrate workloads between clusters. For instructions, see Cluster Migration and Resource Filtering in the Velero documentation.
If you have already installed the Velero CLI with an earlier version of TKG, you must upgrade Velero to v1.11.1. For information, see Upgrade Velero below.
To install the Velero CLI v1.11.1, do the following:
.gz
file for your workstation OS. Its filename starts with velero-linux-
, velero-mac-
, or velero-windows64-
.Use the gunzip
command or the extraction tool of your choice to unpack the binary:
gzip -d <RELEASE-TARBALL-NAME>.gz
Rename the CLI binary for your platform to velero
, make sure that it is executable, and add it to your PATH
.
/usr/local/bin
folder and rename it to velero
.chmod +x /usr/local/bin/velero
Program Files\velero
folder and copy the binary into it.velero.exe
.velero
folder, select Properties > Security, and make sure that your user account has the Full Control permission.env
.Path
row under System variables, and click Edit.velero
binary.If you have upgraded TKG from v2.3 to v2.4, you must upgrade Velero to v1.11.1.
ImportantVelero v1.10.x uses different CRDs, different component naming, and functions differently to v1.9.x. If you were still using Velero v1.9.x with TKG 2.3 and you have upgraded to TKG 2.4, you must upgrade Velero from v1.9.x to v1.10.x before you can upgrade to v1.11.1. For instructions about how to upgrade Velero from v1.9.x to v1.10.x, follow the procedure to Upgrade Velero in the TKG 2.3 documentation before you upgrade Velero to v1.11.1.
To upgrade Velero from v1.10.x to v1.11.1, perform the following steps.
Update the CRD definitions with the Velero v1.11.1 binary.
velero install --crds-only --dry-run -o yaml | kubectl apply -f -
Update the Velero deployment configuration to use the new version of Velero and the version of the Velero plugin for your infrastructure.
kubectl set image deployment/velero \
velero=velero/velero:v1.11.1 \
velero-plugin-for-vsphere=velero/velero-plugin-for-vsphere:v1.5.1 \
--namespace velero
kubectl set image deployment/velero \
velero=velero/velero:v1.11.1 \
velero-plugin-for-aws=velero/velero-plugin-for-aws:v1.7.1 \
--namespace velero
kubectl set image deployment/velero \
velero=velero/velero:v1.11.1 \
velero-plugin-for-microsoft-azure=velero/velero-plugin-for-microsoft-azure:v1.7.1 \
--namespace velero
(Optional) If you are using the node
daemon set, update the version of the node agent.
kubectl set image daemonset/node-agent \
node-agent=velero/velero:v1.11.1 \
--namespace velero
For more information, see Upgrading to Velero 1.11 in the Velero documentation.
To back up Tanzu Kubernetes Grid workload cluster contents, you need storage locations for:
See Backup Storage Locations and Volume Snapshot Locations in the Velero documentation. Velero supports a variety of storage providers, which can be either:
VMware recommends dedicating a unique storage bucket to each cluster.
To set up MinIO:
Run the minio
container image with MinIO credentials and a storage location, for example:
$ docker run -d --name minio --rm -p 9000:9000 -e "MINIO_ACCESS_KEY=minio" -e "MINIO_SECRET_KEY=minio123" -e "MINIO_DEFAULT_BUCKETS=mgmt" gcr.io/velero-gcp/bitnami/minio:2021.6.17-debian-10-r7
Save the credentials to a local file to pass to the --secret-file
option of velero install
, for example:
[default]
aws_access_key_id=minio
aws_secret_access_key=minio123
On vSphere, cluster object storage backups and volume snapshots save to the same storage location. This location must be S3-compatible external storage on Amazon Web Services (AWS), or an S3 provider such as MinIO.
To set up storage for Velero on vSphere, see Velero Plugin for vSphere in Vanilla Kubernetes Cluster for the v1.5.1 plugin.
To set up storage for Velero on AWS, follow the procedures in the Velero Plugins for AWS repository:
Set up S3 storage as needed for each plugin. The object store plugin stores and retrieves cluster object backups, and the volume snapshotter stores and retrieves data volumes.
To set up storage for Velero on Azure, follow the procedures in the Velero Plugins for Azure repository:
Set up S3 storage as needed for each plugin. The object store plugin stores and retrieves cluster object backups, and the volume snapshotter stores and retrieves data volumes.
To deploy the Velero Server to a workload cluster, you run the velero install
command. This command creates a namespace called velero
on the cluster, and places a deployment named velero
in it.
NoteIf the cluster already has Velero installed, follow the steps in Upgrade Velero.
To install Velero, run velero install
with the following options:
--provider $PROVIDER
: For example, aws
--plugins projects.registry.vmware.com/tkg/velero/velero-plugin-for-aws:v1.7.1_vmware.1
--bucket $BUCKET
: The name of your S3 bucket--backup-location-config region=$REGION
: The AWS region the bucket is in--snapshot-location-config region=$REGION
: The AWS region the bucket is in--kubeconfig
to install the Velero server to a cluster other than the current default.(Optional) --secret-file ./VELERO-CREDS
one way to give Velero access to an S3 bucket is to pass in to this option a local VELERO-CREDS
file that looks like:
[default]
aws_access_key_id=<AWS_ACCESS_KEY_ID>
aws_secret_access_key=<AWS_SECRET_ACCESS_KEY>
For additional options, see Install and start Velero.
Running the velero install
command creates a namespace called velero
on the cluster, and places a deployment named velero
in it.
How you run the velero install
command and otherwise set up Velero on a cluster depends on your infrastructure and storage provider, as described in the following sections.
This procedure installs Velero on workload clusters managed by a standalone management cluster on vSphere.
To deploy Velero to a vSphere with Tanzu Supervisor Cluster that serves as your Tanzu Kubernetes Grid management cluster, see Backing Up and Restoring vSphere with Tanzu.
Install the Velero server to the current default cluster in your kubeconfig
by running velero install
with the options listed in Velero Install Options above.
For example, to use MinIO as the object storage, following the MinIO server setup instructions in the Velero documentation:
velero install --provider aws --plugins "projects.registry.vmware.com/tkg/velero/velero-plugin-for-aws:v1.7.1_vmware.1" --bucket velero --secret-file ./credentials-velero --backup-location-config "region=minio,s3ForcePathStyle=true,s3Url=minio_server_url" --snapshot-location-config region="default"
For more information, see the Install section for Vanilla Kubernetes clusters in the Velero Plugin for vSphere v1.5.1 repository.
Installing the Velero server to the cluster creates a namespace in the cluster called velero
, and places a deployment named velero
in it.
If you did not pass a credentials file to --secret-file
with velero install
above, configure grant access to Velero from your backup S3 bucket. On AWS, for example, attach a policy to the IAM role nodes.tkg.cloud.vmware.com
, which governs hosted applications like Velero, to allow access to the S3 bucket.
Add the Velero Plugin for vSphere, which lets Velero use your S3 bucket to store CSI volume snapshots for workload data, in addition to storing cluster objects:
Retrieve and decode the vSphere credentials used by your CSI driver into a secret configuration file csi-vsphere.conf
:
kubectl -n vmware-system-csi get secret vsphere-config-secret -o jsonpath='{.data.csi-vsphere\.conf}'| base64 -d > csi-vsphere.conf
(Optional) Check and confirm the vCenter IP address, username, and password values in the secret configuration file csi-vsphere.conf
, which looks like this:
cluster-id = "CLUSTER-ID"
[VirtualCenter "VCENTER-IP"]
user = "USERNAME"
password = "PASSWORD"
port = "443"
Use the configuration file to create the velero-vsphere-config-secret
secret in the namespace velero
:
kubectl -n velero create secret generic velero-vsphere-config-secret --from-file=csi-vsphere.conf
Create a ConfigMap
file velero-plugin.conf
for the Velero plugin that references the secret:
apiVersion: v1
kind: ConfigMap
metadata:
name: velero-vsphere-plugin-config
data:
cluster_flavor: VANILLA
vsphere_secret_name: velero-vsphere-config-secret
vsphere_secret_namespace: velero
Apply the ConfigMap
:
kubectl -n velero apply -f velero-plugin.conf
Add the plugin:
velero plugin add PLUGIN-IMAGE
Where PLUGIN-IMAGE
is the registry path to the container image listed in the Velero Plugin for vSphere repo v1.5.1, for example, http://projects.registry.vmware.com/tkg/velero/velero-plugin-for-vsphere:v1.5.1_vmware.1
.
Enable the plugin by adding the following VirtualMachine permissions to the role you created for the Tanzu Kubernetes Grid account, if you did not already include them when you created the account:
velero install
with the options listed in Velero Install Options above.velero install
with the options listed in Velero Install Options above.Use Velero to back up and restore a workload cluster’s current workloads and persistent volumes state, for entire clusters or specific namespaces.
To back up the contents of a workload cluster:
Follow the Deploy Velero Server to Clusters instructions for your infrastructure, above, to deploy a Velero server onto the workload cluster, along with the Velero Plugin for vSphere if needed.
Back up the cluster contents:
velero backup create your_backup_name
If velero backup
returns a transport is closing
error, try again after increasing the memory limit, as described in Update resource requests and limits after install in the Velero documentation.
NoteBackup and restore of Windows and multi-OS workload clusters is not supported.
To restore a workload cluster’s contents from backup:
Create a new cluster. You cannot restore a cluster backup to an existing cluster.
Follow the Deploy Velero Server to Clusters instructions for your infrastructure, above, to deploy a Velero server onto the new cluster, along with the Velero Plugin for vSphere if needed.
Restore the cluster contents:
velero backup get
velero restore create your_restore_name --from-backup your_backup_name