--external-dns-provider=aws \
--external-dns-credentials=<path_to_aws_credentials_file> \
--external-dns-domain-filter=<basedomain>
You can recover a hosted cluster to the same region within Amazon Web Services (AWS). For example, you need disaster recovery when the upgrade of a management cluster fails and the hosted cluster is in a read-only state.
Hosted control planes is a Technology Preview feature only. Technology Preview features are not supported with Red Hat production service level agreements (SLAs) and might not be functionally complete. Red Hat does not recommend using them in production. These features provide early access to upcoming product features, enabling customers to test functionality and provide feedback during the development process. For more information about the support scope of Red Hat Technology Preview features, see Technology Preview Features Support Scope. |
The disaster recovery process involves the following steps:
Backing up the hosted cluster on the source management cluster
Restoring the hosted cluster on a destination management cluster
Deleting the hosted cluster from the source management cluster
Your workloads remain running during the process. The cluster API might be unavailable for a period, but that does not affect the services that are running on the worker nodes.
Both the source management cluster and the destination management cluster must have the Example: External DNS flags
If you do not include the |
The backup and restore process works as follows:
On management cluster 1, which you can think of as the source management cluster, the control plane and workers interact by using the external DNS API. The external DNS API is accessible, and a load balancer sits between the management clusters.
You take a snapshot of the hosted cluster, which includes etcd, the control plane, and the worker nodes. During this process, the worker nodes continue to try to access the external DNS API even if it is not accessible, the workloads are running, the control plane is saved in a local manifest file, and etcd is backed up to an S3 bucket. The data plane is active and the control plane is paused.
On management cluster 2, which you can think of as the destination management cluster, you restore etcd from the S3 bucket and restore the control plane from the local manifest file. During this process, the external DNS API is stopped, the hosted cluster API becomes inaccessible, and any workers that use the API are unable to update their manifest files, but the workloads are still running.
The external DNS API is accessible again, and the worker nodes use it to move to management cluster 2. The external DNS API can access the load balancer that points to the control plane.
On management cluster 2, the control plane and worker nodes interact by using the external DNS API. The resources are deleted from management cluster 1, except for the S3 backup of etcd. If you try to set up the hosted cluster again on mangagement cluster 1, it will not work.
To recover your hosted cluster in your target management cluster, you first need to back up all of the relevant data.
Create a configmap file to declare the source management cluster by entering this command:
$ oc create configmap mgmt-parent-cluster -n default --from-literal=from=${MGMT_cluster_NAME}
Shut down the reconciliation in the hosted cluster and in the node pools by entering these commands:
$ PAUSED_UNTIL="true"
$ oc patch -n ${HC_cluster_NS} hostedclusters/${HC_cluster_NAME} -p '{"spec":{"pausedUntil":"'${PAUSED_UNTIL}'"}}' --type=merge
$ oc scale deployment -n ${HC_cluster_NS}-${HC_cluster_NAME} --replicas=0 kube-apiserver openshift-apiserver openshift-oauth-apiserver control-plane-operator
$ PAUSED_UNTIL="true"
$ oc patch -n ${HC_cluster_NS} hostedclusters/${HC_cluster_NAME} -p '{"spec":{"pausedUntil":"'${PAUSED_UNTIL}'"}}' --type=merge
$ oc patch -n ${HC_cluster_NS} nodepools/${NODEPOOLS} -p '{"spec":{"pausedUntil":"'${PAUSED_UNTIL}'"}}' --type=merge
$ oc scale deployment -n ${HC_cluster_NS}-${HC_cluster_NAME} --replicas=0 kube-apiserver openshift-apiserver openshift-oauth-apiserver control-plane-operator
Back up etcd and upload the data to an S3 bucket by running this bash script:
Wrap this script in a function and call it from the main function. |
# ETCD Backup
ETCD_PODS="etcd-0"
if [ "${CONTROL_PLANE_AVAILABILITY_POLICY}" = "HighlyAvailable" ]; then
ETCD_PODS="etcd-0 etcd-1 etcd-2"
fi
for POD in ${ETCD_PODS}; do
# Create an etcd snapshot
oc exec -it ${POD} -n ${HC_cluster_NS}-${HC_cluster_NAME} -- env ETCDCTL_API=3 /usr/bin/etcdctl --cacert /etc/etcd/tls/client/etcd-client-ca.crt --cert /etc/etcd/tls/client/etcd-client.crt --key /etc/etcd/tls/client/etcd-client.key --endpoints=localhost:2379 snapshot save /var/lib/data/snapshot.db
oc exec -it ${POD} -n ${HC_cluster_NS}-${HC_cluster_NAME} -- env ETCDCTL_API=3 /usr/bin/etcdctl -w table snapshot status /var/lib/data/snapshot.db
FILEPATH="/${BUCKET_NAME}/${HC_cluster_NAME}-${POD}-snapshot.db"
CONTENT_TYPE="application/x-compressed-tar"
DATE_VALUE=`date -R`
SIGNATURE_STRING="PUT\n\n${CONTENT_TYPE}\n${DATE_VALUE}\n${FILEPATH}"
set +x
ACCESS_KEY=$(grep aws_access_key_id ${AWS_CREDS} | head -n1 | cut -d= -f2 | sed "s/ //g")
SECRET_KEY=$(grep aws_secret_access_key ${AWS_CREDS} | head -n1 | cut -d= -f2 | sed "s/ //g")
SIGNATURE_HASH=$(echo -en ${SIGNATURE_STRING} | openssl sha1 -hmac "${SECRET_KEY}" -binary | base64)
set -x
# FIXME: this is pushing to the OIDC bucket
oc exec -it etcd-0 -n ${HC_cluster_NS}-${HC_cluster_NAME} -- curl -X PUT -T "/var/lib/data/snapshot.db" \
-H "Host: ${BUCKET_NAME}.s3.amazonaws.com" \
-H "Date: ${DATE_VALUE}" \
-H "Content-Type: ${CONTENT_TYPE}" \
-H "Authorization: AWS ${ACCESS_KEY}:${SIGNATURE_HASH}" \
https://${BUCKET_NAME}.s3.amazonaws.com/${HC_cluster_NAME}-${POD}-snapshot.db
done
For more information about backing up etcd, see "Backing up and restoring etcd on a hosted cluster".
Back up Kubernetes and OpenShift Container Platform objects by entering the following commands. You need to back up the following objects:
Hostedcluster
and NodePool
objects from the Hostedcluster namespace
Hostedcluster
secrets from the Hostedcluster namespace
HostedControlPlane
from the Hosted Control Plane namespace
cluster
from the Hosted Control Plane namespace
AWScluster
, AWSMachineTemplate
, and AWSMachine
from the Hosted Control Plane namespace
MachineDeployments
, MachineSets
, and Machines
from the Hosted Control Plane namespace
ControlPlane
secrets from the Hosted Control Plane namespace
$ mkdir -p ${BACKUP_DIR}/namespaces/${HC_cluster_NS} ${BACKUP_DIR}/namespaces/${HC_cluster_NS}-${HC_cluster_NAME}
$ chmod 700 ${BACKUP_DIR}/namespaces/
# Hostedcluster
$ echo "Backing Up Hostedcluster Objects:"
$ oc get hc ${HC_cluster_NAME} -n ${HC_cluster_NS} -o yaml > ${BACKUP_DIR}/namespaces/${HC_cluster_NS}/hc-${HC_cluster_NAME}.yaml
$ echo "--> Hostedcluster"
$ sed -i '' -e '/^status:$/,$d' ${BACKUP_DIR}/namespaces/${HC_cluster_NS}/hc-${HC_cluster_NAME}.yaml
# NodePool
$ oc get np ${NODEPOOLS} -n ${HC_cluster_NS} -o yaml > ${BACKUP_DIR}/namespaces/${HC_cluster_NS}/np-${NODEPOOLS}.yaml
$ echo "--> NodePool"
$ sed -i '' -e '/^status:$/,$ d' ${BACKUP_DIR}/namespaces/${HC_cluster_NS}/np-${NODEPOOLS}.yaml
# Secrets in the HC Namespace
$ echo "--> Hostedcluster Secrets:"
for s in $(oc get secret -n ${HC_cluster_NS} | grep "^${HC_cluster_NAME}" | awk '{print $1}'); do
oc get secret -n ${HC_cluster_NS} $s -o yaml > ${BACKUP_DIR}/namespaces/${HC_cluster_NS}/secret-${s}.yaml
done
# Secrets in the HC Control Plane Namespace
$ echo "--> Hostedcluster ControlPlane Secrets:"
for s in $(oc get secret -n ${HC_cluster_NS}-${HC_cluster_NAME} | egrep -v "docker|service-account-token|oauth-openshift|NAME|token-${HC_cluster_NAME}" | awk '{print $1}'); do
oc get secret -n ${HC_cluster_NS}-${HC_cluster_NAME} $s -o yaml > ${BACKUP_DIR}/namespaces/${HC_cluster_NS}-${HC_cluster_NAME}/secret-${s}.yaml
done
# Hosted Control Plane
$ echo "--> HostedControlPlane:"
$ oc get hcp ${HC_cluster_NAME} -n ${HC_cluster_NS}-${HC_cluster_NAME} -o yaml > ${BACKUP_DIR}/namespaces/${HC_cluster_NS}-${HC_cluster_NAME}/hcp-${HC_cluster_NAME}.yaml
# cluster
$ echo "--> cluster:"
$ CL_NAME=$(oc get hcp ${HC_cluster_NAME} -n ${HC_cluster_NS}-${HC_cluster_NAME} -o jsonpath={.metadata.labels.\*} | grep ${HC_cluster_NAME})
$ oc get cluster ${CL_NAME} -n ${HC_cluster_NS}-${HC_cluster_NAME} -o yaml > ${BACKUP_DIR}/namespaces/${HC_cluster_NS}-${HC_cluster_NAME}/cl-${HC_cluster_NAME}.yaml
# AWS cluster
$ echo "--> AWS cluster:"
$ oc get awscluster ${HC_cluster_NAME} -n ${HC_cluster_NS}-${HC_cluster_NAME} -o yaml > ${BACKUP_DIR}/namespaces/${HC_cluster_NS}-${HC_cluster_NAME}/awscl-${HC_cluster_NAME}.yaml
# AWS MachineTemplate
$ echo "--> AWS Machine Template:"
$ oc get awsmachinetemplate ${NODEPOOLS} -n ${HC_cluster_NS}-${HC_cluster_NAME} -o yaml > ${BACKUP_DIR}/namespaces/${HC_cluster_NS}-${HC_cluster_NAME}/awsmt-${HC_cluster_NAME}.yaml
# AWS Machines
$ echo "--> AWS Machine:"
$ CL_NAME=$(oc get hcp ${HC_cluster_NAME} -n ${HC_cluster_NS}-${HC_cluster_NAME} -o jsonpath={.metadata.labels.\*} | grep ${HC_cluster_NAME})
for s in $(oc get awsmachines -n ${HC_cluster_NS}-${HC_cluster_NAME} --no-headers | grep ${CL_NAME} | cut -f1 -d\ ); do
oc get -n ${HC_cluster_NS}-${HC_cluster_NAME} awsmachines $s -o yaml > ${BACKUP_DIR}/namespaces/${HC_cluster_NS}-${HC_cluster_NAME}/awsm-${s}.yaml
done
# MachineDeployments
$ echo "--> Hostedcluster MachineDeployments:"
for s in $(oc get machinedeployment -n ${HC_cluster_NS}-${HC_cluster_NAME} -o name); do
mdp_name=$(echo ${s} | cut -f 2 -d /)
oc get -n ${HC_cluster_NS}-${HC_cluster_NAME} $s -o yaml > ${BACKUP_DIR}/namespaces/${HC_cluster_NS}-${HC_cluster_NAME}/machinedeployment-${mdp_name}.yaml
done
# MachineSets
$ echo "--> Hostedcluster MachineSets:"
for s in $(oc get machineset -n ${HC_cluster_NS}-${HC_cluster_NAME} -o name); do
ms_name=$(echo ${s} | cut -f 2 -d /)
oc get -n ${HC_cluster_NS}-${HC_cluster_NAME} $s -o yaml > ${BACKUP_DIR}/namespaces/${HC_cluster_NS}-${HC_cluster_NAME}/machineset-${ms_name}.yaml
done
# Machines
$ echo "--> Hostedcluster Machine:"
for s in $(oc get machine -n ${HC_cluster_NS}-${HC_cluster_NAME} -o name); do
m_name=$(echo ${s} | cut -f 2 -d /)
oc get -n ${HC_cluster_NS}-${HC_cluster_NAME} $s -o yaml > ${BACKUP_DIR}/namespaces/${HC_cluster_NS}-${HC_cluster_NAME}/machine-${m_name}.yaml
done
Clean up the ControlPlane
routes by entering this command:
$ oc delete routes -n ${HC_cluster_NS}-${HC_cluster_NAME} --all
By entering that command, you enable the ExternalDNS Operator to delete the Route53 entries.
Verify that the Route53 entries are clean by running this script:
function clean_routes() {
if [[ -z "${1}" ]];then
echo "Give me the NS where to clean the routes"
exit 1
fi
# Constants
if [[ -z "${2}" ]];then
echo "Give me the Route53 zone ID"
exit 1
fi
ZONE_ID=${2}
ROUTES=10
timeout=40
count=0
# This allows us to remove the ownership in the AWS for the API route
oc delete route -n ${1} --all
while [ ${ROUTES} -gt 2 ]
do
echo "Waiting for ExternalDNS Operator to clean the DNS Records in AWS Route53 where the zone id is: ${ZONE_ID}..."
echo "Try: (${count}/${timeout})"
sleep 10
if [[ $count -eq timeout ]];then
echo "Timeout waiting for cleaning the Route53 DNS records"
exit 1
fi
count=$((count+1))
ROUTES=$(aws route53 list-resource-record-sets --hosted-zone-id ${ZONE_ID} --max-items 10000 --output json | grep -c ${EXTERNAL_DNS_DOMAIN})
done
}
# SAMPLE: clean_routes "<HC ControlPlane Namespace>" "<AWS_ZONE_ID>"
clean_routes "${HC_cluster_NS}-${HC_cluster_NAME}" "${AWS_ZONE_ID}"
Check all of the OpenShift Container Platform objects and the S3 bucket to verify that everything looks as expected.
Restore your hosted cluster.
Gather all of the objects that you backed up and restore them in your destination management cluster.
You backed up the data from your source management cluster.
Ensure that the |
Verify that the new management cluster does not contain any namespaces from the cluster that you are restoring by entering these commands:
# Just in case
$ export KUBECONFIG=${MGMT2_KUBECONFIG}
$ BACKUP_DIR=${HC_cluster_DIR}/backup
# Namespace deletion in the destination Management cluster
$ oc delete ns ${HC_cluster_NS} || true
$ oc delete ns ${HC_cluster_NS}-{HC_cluster_NAME} || true
Re-create the deleted namespaces by entering these commands:
# Namespace creation
$ oc new-project ${HC_cluster_NS}
$ oc new-project ${HC_cluster_NS}-${HC_cluster_NAME}
Restore the secrets in the HC namespace by entering this command:
$ oc apply -f ${BACKUP_DIR}/namespaces/${HC_cluster_NS}/secret-*
Restore the objects in the Hostedcluster
control plane namespace by entering these commands:
# Secrets
$ oc apply -f ${BACKUP_DIR}/namespaces/${HC_cluster_NS}-${HC_cluster_NAME}/secret-*
# cluster
$ oc apply -f ${BACKUP_DIR}/namespaces/${HC_cluster_NS}-${HC_cluster_NAME}/hcp-*
$ oc apply -f ${BACKUP_DIR}/namespaces/${HC_cluster_NS}-${HC_cluster_NAME}/cl-*
If you are recovering the nodes and the node pool to reuse AWS instances, restore the objects in the HC control plane namespace by entering these commands:
# AWS
$ oc apply -f ${BACKUP_DIR}/namespaces/${HC_cluster_NS}-${HC_cluster_NAME}/awscl-*
$ oc apply -f ${BACKUP_DIR}/namespaces/${HC_cluster_NS}-${HC_cluster_NAME}/awsmt-*
$ oc apply -f ${BACKUP_DIR}/namespaces/${HC_cluster_NS}-${HC_cluster_NAME}/awsm-*
# Machines
$ oc apply -f ${BACKUP_DIR}/namespaces/${HC_cluster_NS}-${HC_cluster_NAME}/machinedeployment-*
$ oc apply -f ${BACKUP_DIR}/namespaces/${HC_cluster_NS}-${HC_cluster_NAME}/machineset-*
$ oc apply -f ${BACKUP_DIR}/namespaces/${HC_cluster_NS}-${HC_cluster_NAME}/machine-*
Restore the etcd data and the hosted cluster by running this bash script:
ETCD_PODS="etcd-0"
if [ "${CONTROL_PLANE_AVAILABILITY_POLICY}" = "HighlyAvailable" ]; then
ETCD_PODS="etcd-0 etcd-1 etcd-2"
fi
HC_RESTORE_FILE=${BACKUP_DIR}/namespaces/${HC_cluster_NS}/hc-${HC_cluster_NAME}-restore.yaml
HC_BACKUP_FILE=${BACKUP_DIR}/namespaces/${HC_cluster_NS}/hc-${HC_cluster_NAME}.yaml
HC_NEW_FILE=${BACKUP_DIR}/namespaces/${HC_cluster_NS}/hc-${HC_cluster_NAME}-new.yaml
cat ${HC_BACKUP_FILE} > ${HC_NEW_FILE}
cat > ${HC_RESTORE_FILE} <<EOF
restoreSnapshotURL:
EOF
for POD in ${ETCD_PODS}; do
# Create a pre-signed URL for the etcd snapshot
ETCD_SNAPSHOT="s3://${BUCKET_NAME}/${HC_cluster_NAME}-${POD}-snapshot.db"
ETCD_SNAPSHOT_URL=$(AWS_DEFAULT_REGION=${MGMT2_REGION} aws s3 presign ${ETCD_SNAPSHOT})
# FIXME no CLI support for restoreSnapshotURL yet
cat >> ${HC_RESTORE_FILE} <<EOF
- "${ETCD_SNAPSHOT_URL}"
EOF
done
cat ${HC_RESTORE_FILE}
if ! grep ${HC_cluster_NAME}-snapshot.db ${HC_NEW_FILE}; then
sed -i '' -e "/type: PersistentVolume/r ${HC_RESTORE_FILE}" ${HC_NEW_FILE}
sed -i '' -e '/pausedUntil:/d' ${HC_NEW_FILE}
fi
HC=$(oc get hc -n ${HC_cluster_NS} ${HC_cluster_NAME} -o name || true)
if [[ ${HC} == "" ]];then
echo "Deploying HC cluster: ${HC_cluster_NAME} in ${HC_cluster_NS} namespace"
oc apply -f ${HC_NEW_FILE}
else
echo "HC cluster ${HC_cluster_NAME} already exists, avoiding step"
fi
If you are recovering the nodes and the node pool to reuse AWS instances, restore the node pool by entering this command:
$ oc apply -f ${BACKUP_DIR}/namespaces/${HC_cluster_NS}/np-*
To verify that the nodes are fully restored, use this function:
timeout=40
count=0
NODE_STATUS=$(oc get nodes --kubeconfig=${HC_KUBECONFIG} | grep -v NotReady | grep -c "worker") || NODE_STATUS=0
while [ ${NODE_POOL_REPLICAS} != ${NODE_STATUS} ]
do
echo "Waiting for Nodes to be Ready in the destination MGMT cluster: ${MGMT2_cluster_NAME}"
echo "Try: (${count}/${timeout})"
sleep 30
if [[ $count -eq timeout ]];then
echo "Timeout waiting for Nodes in the destination MGMT cluster"
exit 1
fi
count=$((count+1))
NODE_STATUS=$(oc get nodes --kubeconfig=${HC_KUBECONFIG} | grep -v NotReady | grep -c "worker") || NODE_STATUS=0
done
Shut down and delete your cluster.
After you back up your hosted cluster and restore it to your destination management cluster, you shut down and delete the hosted cluster on your source management cluster.
You backed up your data and restored it to your source management cluster.
Ensure that the |
Scale the deployment
and statefulset
objects by entering these commands:
Do not scale the stateful set if the value of its As a workaround, update the value of the |
# Just in case
$ export KUBECONFIG=${MGMT_KUBECONFIG}
# Scale down deployments
$ oc scale deployment -n ${HC_cluster_NS}-${HC_cluster_NAME} --replicas=0 --all
$ oc scale statefulset.apps -n ${HC_cluster_NS}-${HC_cluster_NAME} --replicas=0 --all
$ sleep 15
Delete the NodePool
objects by entering these commands:
NODEPOOLS=$(oc get nodepools -n ${HC_cluster_NS} -o=jsonpath='{.items[?(@.spec.clusterName=="'${HC_cluster_NAME}'")].metadata.name}')
if [[ ! -z "${NODEPOOLS}" ]];then
oc patch -n "${HC_cluster_NS}" nodepool ${NODEPOOLS} --type=json --patch='[ { "op":"remove", "path": "/metadata/finalizers" }]'
oc delete np -n ${HC_cluster_NS} ${NODEPOOLS}
fi
Delete the machine
and machineset
objects by entering these commands:
# Machines
for m in $(oc get machines -n ${HC_cluster_NS}-${HC_cluster_NAME} -o name); do
oc patch -n ${HC_cluster_NS}-${HC_cluster_NAME} ${m} --type=json --patch='[ { "op":"remove", "path": "/metadata/finalizers" }]' || true
oc delete -n ${HC_cluster_NS}-${HC_cluster_NAME} ${m} || true
done
$ oc delete machineset -n ${HC_cluster_NS}-${HC_cluster_NAME} --all || true
Delete the cluster object by entering these commands:
# cluster
$ C_NAME=$(oc get cluster -n ${HC_cluster_NS}-${HC_cluster_NAME} -o name)
$ oc patch -n ${HC_cluster_NS}-${HC_cluster_NAME} ${C_NAME} --type=json --patch='[ { "op":"remove", "path": "/metadata/finalizers" }]'
$ oc delete cluster.cluster.x-k8s.io -n ${HC_cluster_NS}-${HC_cluster_NAME} --all
Delete the AWS machines (Kubernetes objects) by entering these commands. Do not worry about deleting the real AWS machines. The cloud instances will not be affected.
# AWS Machines
for m in $(oc get awsmachine.infrastructure.cluster.x-k8s.io -n ${HC_cluster_NS}-${HC_cluster_NAME} -o name)
do
oc patch -n ${HC_cluster_NS}-${HC_cluster_NAME} ${m} --type=json --patch='[ { "op":"remove", "path": "/metadata/finalizers" }]' || true
oc delete -n ${HC_cluster_NS}-${HC_cluster_NAME} ${m} || true
done
Delete the HostedControlPlane
and ControlPlane
HC namespace objects by entering these commands:
# Delete HCP and ControlPlane HC NS
$ oc patch -n ${HC_cluster_NS}-${HC_cluster_NAME} hostedcontrolplane.hypershift.openshift.io ${HC_cluster_NAME} --type=json --patch='[ { "op":"remove", "path": "/metadata/finalizers" }]'
$ oc delete hostedcontrolplane.hypershift.openshift.io -n ${HC_cluster_NS}-${HC_cluster_NAME} --all
$ oc delete ns ${HC_cluster_NS}-${HC_cluster_NAME} || true
Delete the Hostedcluster
and HC namespace objects by entering these commands:
# Delete HC and HC Namespace
$ oc -n ${HC_cluster_NS} patch hostedclusters ${HC_cluster_NAME} -p '{"metadata":{"finalizers":null}}' --type merge || true
$ oc delete hc -n ${HC_cluster_NS} ${HC_cluster_NAME} || true
$ oc delete ns ${HC_cluster_NS} || true
To verify that everything works, enter these commands:
# Validations
$ export KUBECONFIG=${MGMT2_KUBECONFIG}
$ oc get hc -n ${HC_cluster_NS}
$ oc get np -n ${HC_cluster_NS}
$ oc get pod -n ${HC_cluster_NS}-${HC_cluster_NAME}
$ oc get machines -n ${HC_cluster_NS}-${HC_cluster_NAME}
# Inside the Hostedcluster
$ export KUBECONFIG=${HC_KUBECONFIG}
$ oc get clusterversion
$ oc get nodes
Delete the OVN pods in the hosted cluster so that you can connect to the new OVN control plane that runs in the new management cluster:
Load the KUBECONFIG
environment variable with the hosted cluster’s kubeconfig path.
Enter this command:
$ oc delete pod -n openshift-ovn-kubernetes --all