Kubernetes/Helm/Helm部署Velero.md
offends 7a2f41e7d6
All checks were successful
continuous-integration/drone Build is passing
synchronization
2024-08-07 18:54:39 +08:00

4.6 KiB
Raw Blame History

本文作者:丁辉

Helm部署Velero

官方文档 Velero客户端下载 Helm仓库介绍页 Helm-Github仓库

开始部署

准备 Minio 存储

示例:

  • 存储地址为192.168.1.10
  • 账户/密码minioadmin/minioadmin
  • 存储桶backup
  1. 添加 Helm 仓库

    helm repo add vmware-tanzu https://vmware-tanzu.github.io/helm-charts
    helm repo update
    
  2. 编辑 values.yaml

    vi velero-values.yaml
    

    内容如下

    cleanUpCRDs: true
    
    snapshotsEnabled: false
    
    initContainers:
      - name: velero-plugin-for-aws
        image: velero/velero-plugin-for-aws:latest
        imagePullPolicy: IfNotPresent
        volumeMounts:
          - mountPath: /target
            name: plugins
    
    configuration:
      backupStorageLocation:
      - name: default
        provider: aws
        bucket: backup
        accessMode: ReadWrite
        config:
          region: minio-region
          s3ForcePathStyle: true
          s3Url: http://192.168.1.10:9000
          publicUrl: http://192.168.1.10:9000
    
    credentials:
      useSecret: true
      secretContents:
        cloud: |
          [default]
          aws_access_key_id=minioadmin
          aws_secret_access_key=minioadmin      
    
    # 配置定时备份任务 disabled 改为 false 即可启动定时任务(默认关闭)
    # 特别参数解释: 
    # useOwnerReferencesInBackup: 设置为 false表示在备份时不使用资源的 owner references 来确定哪些关联资源应该包括在备份中。如果设置为 trueVelero 会根据 Kubernetes 的 owner references 备份会自动包括关联资源。
    # ttl: 设置备份的生存时间(Time To Live)。
    # storageLocation: 指定备份数据存储的位置。
    # includedNamespaces: 列出要包括在备份中的命名空间。
    # includedResources: 指定备份中要包括的资源类型。
    # excludedResources: 指定不包括在备份中的资源类型。
    schedules:
      backup:
        disabled: true
        schedule: "*/1 * * * *"
        useOwnerReferencesInBackup: false
        template:
          ttl: "240h"
          storageLocation: default
          includedNamespaces:
          - default
          includedResources:
          - pv,pvc
          excludedResources:
          - pod
    
  3. 安装

    helm install velero vmware-tanzu/velero \
      --namespace velero --create-namespace \
      -f velero-values.yaml
    
  4. 下载客户端

    wget https://github.com/vmware-tanzu/velero/releases/download/v1.14.0/velero-v1.14.0-linux-amd64.tar.gz
    
  5. 解压文件

    tar -zxvf velero-v*-linux-amd64.tar.gz
    
  6. 移动客户端二进制文件到可执行目录

    mv velero-v*-linux-amd64/velero /usr/local/bin/
    

卸载

  1. 卸载 velero

    helm uninstall velero -n velero
    
  2. 删除命名空间

    kubectl delete ns velero
    

基础命令

  • 查看所有备份

    velero get backups
    
  • 备份整个集群

    velero backup create <backup-name>
    

    基础参数

    • 备份特定的命名空间 --include-namespaces <namespace>
    • 备份特定的资源 --include-resources <resources>
    • 备份多个特定的资源 --include-resources pv,pvc
    • 排除特定资源 --exclude-resources <resources>
  • 恢复整个备份

    velero restore create --from-backup <backup-name>
    
    • 恢复特定资源 --include-resources <resources>

    • 恢复到特定命名空间 --namespace-mappings old-namespace:<new-namespace>

    • 恢复时指定名称

      这个名称有助于你后续追踪和管理这次特定的恢复操作

      velero restore create <restore-name> --from-backup <backup-name>
      
  • 删除备份

    velero backup delete <backup-name>
    

    删除操作时不想被提示确认,可以添加 --confirm 参数来直接删除

  • 创建定时备份

    使用 Cron 表达式(可用参数和 backup 一致)

    velero schedule create <schedule-name> --schedule="* * * * *"
    
    • 每 24 小时备份一次 --schedule="@every 24h"
    • 每一分钟执行一次 --schedule="1 * * * *"
  • 查看全部定时备份

    velero get schedule
    
  • 删除定时备份

    velero schedule delete <schedule-name>
    

    删除操作时不想被提示确认,可以添加 --confirm 参数来直接删除