Skip to content

etcd backup

ETCD backup is based on cluster data as the core backup. In cases such as hardware device damage, development and test configuration errors, etc., the backup cluster data can be restored through etcd backup.

This section will introduce how to realize the etcd backup for clusters.

Prerequisites

Create etcd backup

Follow the steps below to create an etcd backup.

  1. Enter Container Management -> Backup Recovery -> ETCD Backup page, you can see all the current backup policies. Click Create Backup Policy on the right.

    Backup policy list

  2. Fill in the Basic Information. Then, click Next to automatically verify the connectivity of ETCD. If the verification passes, proceed to the next step.

    • First select the backup cluster and log in to the terminal
    • Enter ETCD, and the format is https://${NodeIP}:${Port}.

      • In a standard Kubernetes cluster, the default port for ETCD is 2379.
      • In a DCE 4.0 cluster, the default port for ETCD is 12379.
      • In a public cloud managed cluster, you need to contact the relevant developers to obtain the ETCD port number. This is because the control plane components of public cloud clusters are maintained and managed by the cloud service provider. Users cannot directly access or view these components, nor can they obtain control plane port information through regular commands (such as kubectl).
      Ways to obtain port number
      1. Find the ETCD Pod in the kube-system namespace

        kubectl get po -n kube-system | grep etcd
        
      2. Get the port number from the listen-client-urls of the ETCD Pod

        kubectl get po -n kube-system ${etcd_pod_name} -oyaml | grep listen-client-urls # (1)!
        
        1. Replace etcd_pod_name with the actual Pod name

        The expected output is as follows, where the number after the node IP is the port number:

        - --listen-client-urls=https://127.0.0.1:2379,https://10.6.229.191:2379
        
    • Fill in the CA certificate, you can use the following command to view the certificate content. Then, copy and paste it to the proper location:

      cat /etc/kubernetes/ssl/etcd/ca.crt
      
      cat /etc/daocloud/dce/certs/ca.crt
      
    • Fill in the Cert certificate, you can use the following command to view the content of the certificate. Then, copy and paste it to the proper location:

      cat /etc/kubernetes/ssl/apiserver-etcd-client.crt
      
      cat /etc/daocloud/dce/certs/etcd/server.crt
      
    • Fill in the Key, you can use the following command to view the content of the certificate and copy and paste it to the proper location:

      cat /etc/kubernetes/ssl/apiserver-etcd-client.key
      
      cat /etc/daocloud/dce/certs/etcd/server.key
      

      Create Basic Information

    Note

    Click How to get below the input box to see how to obtain the proper information on the UI page.

  3. Refer to the following information to fill in the Backup Policy.

    • Backup Method: Choose either manual backup or scheduled backup

      • Manual Backup: Immediately perform a full backup of ETCD data based on the backup configuration.
      • Scheduled Backup: Periodically perform full backups of ETCD data according to the set backup frequency.
    • Backup Chain Length: the maximum number of backup data to retain. The default is 30.

    • Backup Frequency: it can be per hour, per day, per week or per month, and can also be customized.
  4. Refer to the following information to fill in the Storage Path.

    • Storage Provider: Default is S3 storage
    • Object Storage Access Address: The access address of MinIO
    • Bucket: Create a Bucket in MinIO and fill in the Bucket name
    • Username: The login username for MinIO
    • Password: The login password for MinIO
  5. After clicking OK , the page will automatically redirect to the backup policy list, where you can view all the currently created ones.

    • Click the action button on the right side of the policy to view logs, view YAML, update the policy, stop the policy, or execute the policy immediately.
    • When the backup method is manual, you can click Execute Now to perform the backup.
    • When the backup method is scheduled, the backup will be performed according to the configured time.

View Backup Policy Logs

Click Logs to view the log content. By default, 100 lines are displayed. If you want to see more log information or download the logs, you can follow the prompts above the logs to go to the observability module.

View Backup POlicy Details

Go to Container Management -> Backup Recovery -> ETCD Backup, click on the Backup Policy tab, and then click the policy to view the details.

View Recovery Point

  1. Go to Container Management -> Backup Recovery -> ETCD Backup, and click on the Recovery Point tab.
  2. After selecting the target cluster, you can view all the backup information under that cluster.

    Each time a backup is executed, a corresponding recovery point is generated, which can be used to quickly restore the application from a successful recovery point.

Comments