Disaster recovery on Hosted Control Planes
In this section, we will outline the procedures for performing disaster recovery tasks on a Hosted Cluster using the Openshift API for Data Protection (OADP). We will differentiate between the Control Plane (consisting of pods running in the Management cluster, which function as a Hosted Control Plane) and the Data Plane (the Hosted Cluster where customers add their workloads and develop their core business).
Pre-requisites
The first consideration is to ensure we meet the prerequisites. On the Management cluster, whether it is Connected or Disconnected, we require:
- A valid StorageClass.
- Cluster-admin access.
- Access to the openshift-adp subscription through a CatalogSource.
- Access to online storage compatible with the openshift-adp cloud storage providers (S3, Azure, GCP, Minio, etc.).
- The HostedControlPlane pods should be accessible and functioning correctly.
- (Bare Metal Provider Only) As the InfraEnv has a different lifecycle than the HostedCluster, it should reside in a namespace separate from that of the HostedControlPlane and should not be deleted during the backup/restore procedures.
Important
Before proceeding further, two crucial points must be noted: 1. Restoration will occur in a green field environment, signifying that after the HostedCluster has been backed up, it must be destroyed to initiate the restoration process. 2. Node reprovisioning will take place, necessitating the backup of workloads in the Data Plane before deleting the HostedCluster..
Openshift-adp deployment
To deploy the OADP operator, we kindly redirect you to the Official Red Hat documentation, where they provide instructions based on the version of the Management Cluster you're using.
Once installed, you'll need to create an object called DPA (Data Protection Application), which essentially describes the backup locations, Velero pod configurations, etc. This process varies depending on the cloud/remote storage location. All relevant documentation is available here.
This guide will focus on two main platforms:
The first step is to create credentials for the platform where you'll upload the backups. Specific instructions can be found in the official documentation, but the basic steps are as follows:
cat << EOF > ./credentials
[default]
aws_access_key_id=<AWS_ACCESS_KEY_ID>
aws_secret_access_key=<AWS_SECRET_ACCESS_KEY>
EOF
oc create secret generic cloud-credentials -n openshift-adp --from-file cloud=credentials
Note
This applies to S3 and Minio platforms. For other providers, you can follow the instructions provided in the official documentation.
If you are using the AWS S3 provider, you will need to create additional objects in AWS to enable the push and pullback of data to S3. To accomplish this, follow these instructions
Below are some samples of DPA configurations for the mentioned platforms
---
apiVersion: oadp.openshift.io/v1alpha1
kind: DataProtectionApplication
metadata:
name: dpa-instance
namespace: openshift-adp
spec:
backupLocations:
- name: default
velero:
provider: aws
default: true
objectStorage:
bucket: oadp-backup
prefix: hcp
config:
region: minio
profile: "default"
s3ForcePathStyle: "true"
s3Url: "http://registry.hypershiftbm.lab:9002"
insecureSkipTLSVerify: "true"
credential:
key: cloud
name: cloud-credentials
default: true
snapshotLocations:
- velero:
provider: aws
config:
region: minio
profile: "default"
credential:
key: cloud
name: cloud-credentials
configuration:
nodeAgent:
enable: true
uploaderType: kopia
velero:
defaultPlugins:
- openshift
- aws
- csi
resourceTimeout: 2h
---
apiVersion: oadp.openshift.io/v1alpha1
kind: DataProtectionApplication
metadata:
name: dpa-instance
namespace: openshift-adp
spec:
backupLocations:
- name: default
velero:
provider: aws
default: true
objectStorage:
bucket: <bucket_name>
prefix: <prefix>
config:
region: us-east-1
profile: "backupStorage"
credential:
key: cloud
name: cloud-credentials
snapshotLocations:
- velero:
provider: aws
config:
region: us-east-1
profile: "volumeSnapshot"
credential:
key: cloud
name: cloud-credentials
configuration:
nodeAgent:
enable: true
uploaderType: kopia
velero:
defaultPlugins:
- openshift
- aws
- csi
resourceTimeout: 2h
Once you create any of these DPA objects, several pods will be instantiated in the openshift-adp
namespace. This includes one node-agent
per node in the Management Cluster and the velero
deployment.
Note
To follow backup and restore procedures, you can monitor the logs in the velero pod.
Backup and Upload
Data Plane workloads backup
Note
If the workloads in the Data Plane are not crucial for you, it's safe to skip this step.
If you need to backup the applications running under the HostedCluster, it's advisable to follow the official documentation for backup and restore of OpenShift applications
The steps will indeed be quite similar:
- Deploy the OADP operator from OLM.
- Create the DPA (Data Protection Application), with a manifest similar to the one provided earlier. It might be beneficial to adjust the
Prefix
or/andBucket
fields to keep the ControlPlane and DataPlane backups separated. - Create the backup manifest. This step varies depending on the complexity of the workloads in the Data Plane. It's essential to thoroughly examine how to back up the PersistentVolumes, the backend used, and ensure compatibility with our storage provisioner.
We recommend checking if your workloads contain Persistent Volumes and if our StorageClass is compatible with CSI Volume Snapshots, which is one of the simplest ways to handle this aspect.
As a standard approach to maintain consistency in the backup layer for the Hosted Control Plane, we will utilize Kopia
as the backend tool for data snapshots, along with File System Backup
. However, it's possible that your workloads may benefit from a different approach that better aligns with your specific use case.
Important
The backup of the workloads residing in the Data Plane falls outside the scope of this documentation. Please refer to the official Openshift-ADP backup documentation for further details. Additional links and information can be found in the References section.
Once we have completed the backup of the Data Plane layer, we can proceed with the backup of the Hosted Control Plane (HCP).
Manual actions before backup
Before deploying the backup
manifest, several actions are required:
- Scale down the NodePool to 0 replicas.
oc --kubeconfig <MGMT-CLUSTER-KUBECONFIG> scale nodepool -n <HOSTEDCLUSTER NAMESPACE> <NODEPOOL NAME> --replicas 0
This will make the HostedCluster nodes to come back to the Infraenv in the Bare Metal provider or the instance deletion in the other ones.
- Pause the HostedCluster and NodePools.
oc --kubeconfig <MGMT-CLUSTER-KUBECONFIG> patch hostedcluster -n <HOSTEDCLUSTER NAMESPACE> <HOSTEDCLUSTER NAME> --type json -p '[{"op": "add", "path": "/spec/pausedUntil", "value": "true"}]'
oc --kubeconfig <MGMT-CLUSTER-KUBECONFIG> patch nodepool -n <HOSTEDCLUSTER NAMESPACE> <NODEPOOL NAME> --type json -p '[{"op": "add", "path": "/spec/pausedUntil", "value": "true"}]'
This will allow the controller to halt modifications over the ETCD.
Control Plane backup
Now, we will apply the backup manifest. Here is how it looks like:
---
apiVersion: velero.io/v1
kind: Backup
metadata:
name: hc-clusters-hosted-backup
namespace: openshift-adp
labels:
velero.io/storage-location: default
spec:
hooks: {}
includedNamespaces:
- clusters
- clusters-hosted
includedResources:
- sa
- role
- rolebinding
- pod
- pvc
- pv
- bmh
- configmap
- infraenv
- priorityclasses
- pdb
- agents
- hostedcluster
- nodepool
- secrets
- services
- deployments
- hostedcontrolplane
- cluster
- agentcluster
- agentmachinetemplate
- agentmachine
- machinedeployment
- machineset
- machine
excludedResources: []
storageLocation: default
ttl: 2h0m0s
snapshotMoveData: true
datamover: "velero"
defaultVolumesToFsBackup: true
We will emphasize the most important fields:
- These two fields enable the CSI VolumeSnapshots to be automatically uploaded to the remote cloud storage.
snapshotMoveData: true
datamover: "velero"
- This particular field is crucial if you utilize a combination of CSI Volume Snapshot and fs-backup. It designates fs-backup as the default method for Persistent Volume backup. If you wish to continue using CSI Volume Snapshot (within the same backup manifest), you will need to add an annotation to the desired pods, including the PVs
backup.velero.io/backup-volumes-excludes=<pvc-name>
. Further information can be found here.
defaultVolumesToFsBackup: true
- This field selects the namespaces from which objects will be backed up. They should include namespaces from both the HostedCluster (in the example
clusters
) and the HostedControlPlane (in the exampleclusters-hosted
).
includedNamespaces:
- clusters
- clusters-hosted
Once you apply the manifest, you can monitor the backup process in two places: the backup object status and the Velero logs. Please refer to the Watching section for more information.
The backup process is considered complete when the status.phase
is Completed
.
Restore
For the restoration procedure, ensure that there are no Pods/PVCs running in the HostedControlPlane namespace to facilitate a successful restoration. If restoring the HostedCluster within the same Management cluster, delete the following objects:
- HostedCluster
- Nodepools
- PVCs
This will remove the Pods/PVCs, allowing for a proper restoration of the environment.
Important
In the case of the Bare Metal provider (Agent), it's crucial to ensure that we don't delete the InfraEnv object. This object is mandatory for the new nodes that will be reprovisioned, as they need access to it in order to retrieve the Discovery ISO.
Now let's take a look to the restoration manifest:
---
apiVersion: velero.io/v1
kind: Restore
metadata:
name: hc-clusters-hosted-restore
namespace: openshift-adp
spec:
backupName: hc-clusters-hosted-backup
restorePVs: true
existingResourcePolicy: update
excludedResources:
- nodes
- events
- events.events.k8s.io
- backups.velero.io
- restores.velero.io
- resticrepositories.velero.io
Here we have a couple of important fields
restorePVs: true
existingResourcePolicy: update
restorePvs
will initiate the recovery of pods with the included persistent volumes.- Setting
existingResourcePolicy
toupdate
ensures that any existing objects are overwritten with the backup content. This may cause issues with objects containing immutable fields, which is why we delete them in a previous step. If this policy is not set, the Velero engine will skip the restoration of objects that already exist.
You can monitor the restoration process by checking the restore status field and following the Velero logs mentioned in the Watching section.
The restoration process is considered complete once the status.phase
is Completed
.
Now, we need to undo the actions taken before the backup phase:
- Revert the controllers' reconciliation state to unpaused.
oc --kubeconfig <MGMT-CLUSTER-KUBECONFIG> patch hostedcluster -n <HOSTEDCLUSTER NAMESPACE> <HOSTEDCLUSTER NAME> --type json -p '[{"op": "add", "path": "/spec/pausedUntil", "value": "false"}]'
oc --kubeconfig <MGMT-CLUSTER-KUBECONFIG> patch nodepool -n <HOSTEDCLUSTER NAMESPACE> <NODEPOOL NAME> --type json -p '[{"op": "add", "path": "/spec/pausedUntil", "value": "false"}]'
Important
(For BareMetal Provider) After some time in the BareMetal case, you will see Agents popping up. This indicates that the nodes have been booted up (which depends on the BareMetalHosts that you backed up). If you don't see those agents appearing, try recreating the BareMetalHosts in the proper namespace. This ensures that the Agents will appear. Then, you can rescale the node pool as follows:
- Scale back the Nodepool/s to the desired number of replicas.
oc --kubeconfig <MGMT-CLUSTER-KUBECONFIG> scale nodepool -n <HOSTEDCLUSTER NAMESPACE> <NODEPOOL NAME> --replicas X
After some time, the nodes will join the cluster, and the Hosted Cluster will be back online.
Following that, you will need to restore the Data Plane workloads if applicable to your use case.
Watching and Troubleshooting
Watching
Here we will describe how to monitor and observe a Backup or Restore process:
- Watch the Backup process
watch "oc get backup -n openshift-adp <BACKUP_NAME> -o jsonpath='{.status}' | jq"
- Watch the Restore process
watch "oc get restore -n openshift-adp <BACKUP_NAME> -o jsonpath='{.status}' | jq"
- Follow the Velero logs
oc logs -n openshift-adp -ldeploy=velero -f
- Watch all the OADP Main objects
watch "echo BackupRepositories:;echo;oc get backuprepositories.velero.io -A;echo; echo BackupStorageLocations: ;echo; oc get backupstoragelocations.velero.io -A;echo;echo DataUploads: ;echo;oc get datauploads.velero.io -A;echo;echo DataDownloads: ;echo;oc get datadownloads.velero.io -n openshift-adp; echo;echo VolumeSnapshotLocations: ;echo;oc get volumesnapshotlocations.velero.io -A;echo;echo Backups:;echo;oc get backup -A; echo;echo Restores:;echo;oc get restore -A"
Troubleshooting
For troubleshooting purposes, it's crucial to identify where the process is stuck. Here are some tips:
- Review the Velero logs in the
openshift-adp
namespace. - Utilize the
velero
command with the--details
flag to describe the backup/restore objects. - Check the backup/restore status directly in the respective object, which can provide valuable hints.
- Examine the Events in the affected namespaces (in the previous examples, these were
clusters
andclusters-hosted
). - Verify the status of all OADP objects using the command provided in the Watching section.
Tips and Tricks
Use the velero CLI
To gain more insights into the backup/restore objects or to perform actions such as deleting a backup/restore object, you can utilize the velero
CLI. This tool provides additional context in each case, and the best part is that you don't need to download anything.
- Create an alias to use the
velero
CLI from a container
alias velero='oc -n openshift-adp exec deployment/velero -c velero -it -- ./velero'
Now you can execute commands using the velero
CLI. Here are some sample commands:
- Describe a restore called
hc-clusters-hosted-restore
velero restore describe hc-clusters-hosted-restore --details
- Describe a backup called
hc-clusters-hosted-backup
velero backup describe hc-clusters-hosted-backup --details
How to handle backups properly
To handle the backup
and restore
objects in the cloud storage effectively, the following command is quite useful. It helps identify issues with the backuprepositories.velero.io
object if you manually modify the folder structure in the destination storage. Therefore, we recommend avoiding modifications over that storage and managing the backups/restore objects using the CLI.
- Delete a backup created and called
hc-clusters-hosted-backup
velero delete backup hc-clusters-hosted-backup
Important
If you modify the folder structure of the remote storage where your backups are hosted, you may encounter issues with backuprepositories.velero.io
. In such cases, you will need to recreate all the associated objects, including DPAs, backups, restores, etc.