Velero 系列文章(三):Velero 资源过滤

简介: Velero 系列文章(三):Velero 资源过滤

根据资源过滤

格式为: resource.group, 如 storageclasses.storage.k8s.io

比如要排除以下资源:

命令如下:

velero backup create default-all \
  --exclude-resources replicasets,endpointslices.discovery.k8s.io,endpoints,events.events.k8s.io,pods,authconfigs.management.cattle.io,clusterrepos.catalog.cattle.io,clusters.management.cattle.io,csinodes.storage.k8s.io,features.management.cattle.io,settings.management.cattle.io
BASH

根据 NameSpace 进行过滤

命令示例如下:

velero schedule create default-exclude-rancher-daily \ 
  --schedule="@every 24h" \ 
  --exclude-namespaces c-m-2hpl28vh,c-m-xgr56lxz,cattle-dashboards,cattle-fleet-clusters-system,cattle-fleet-local-system,cattle-fleet-system,cattle-global-data,cattle-global-nt,cattle-impersonation-system,cattle-resources-system,cattle-system,cluster-fleet-default-home-k3s-e7c0722dc658,cluster-fleet-default-multicloud-k3s-6c520ab37e6d,cluster-fleet-local-local-1a3d67d0a899,fleet-default,fleet-local,local,p-67tgc,p-6bnxt,p-dj2vc,p-k77t2,p-lzt79,p-qrjhz,p-zlf9l,p-zpwst,user-5rvgp
BASH

执行定期备份

如上, 命令如下:

velero schedule create default-exclude-rancher-daily \
  --schedule="@every 24h"
BASH

系列文章

📚️参考文档

相关实践学习
通过Ingress进行灰度发布
本场景您将运行一个简单的应用,部署一个新的应用用于新的发布,并通过Ingress能力实现灰度发布。
容器应用与集群管理
欢迎来到《容器应用与集群管理》课程,本课程是“云原生容器Clouder认证“系列中的第二阶段。课程将向您介绍与容器集群相关的概念和技术,这些概念和技术可以帮助您了解阿里云容器服务ACK/ACK Serverless的使用。同时,本课程也会向您介绍可以采取的工具、方法和可操作步骤,以帮助您了解如何基于容器服务ACK Serverless构建和管理企业级应用。 学习完本课程后,您将能够: 掌握容器集群、容器编排的基本概念 掌握Kubernetes的基础概念及核心思想 掌握阿里云容器服务ACK/ACK Serverless概念及使用方法 基于容器服务ACK Serverless搭建和管理企业级网站应用
相关文章
|
5月前
|
JSON Kubernetes Shell
【Azure K8S | AKS】在不丢失文件/不影响POD运行的情况下增加PVC的大小
【Azure K8S | AKS】在不丢失文件/不影响POD运行的情况下增加PVC的大小
|
存储 Kubernetes 测试技术
Kubernetes snapshots 快照是什么以及如何使用快照
Kubernetes snapshots 快照是什么以及如何使用快照
631 0
|
3月前
|
Kubernetes Docker Perl
k8s常见故障--yaml文件检查没有问题 pod起不来(一直处于创建中)
k8s常见故障--yaml文件检查没有问题 pod起不来(一直处于创建中)
131 1
|
5月前
|
JSON Kubernetes 数据格式
k8s集群yaml文件方式迁移
k8s集群yaml文件方式迁移
|
5月前
|
存储 Kubernetes API
在K8S中,删除一个Pod会发生什么事情?
在K8S中,删除一个Pod会发生什么事情?
|
6月前
|
JSON Kubernetes Linux
k8s备份恢复实践--velero
使用Velero备份k8资源到minio,阿里云oss,七牛云Kodo
375 7
|
8月前
|
Kubernetes Go Perl
k8s 怎么精准获取deployment关联的pods?
该内容是关于Kubernetes中通过标签获取Deployment管理的Pod的流程和代码示例。首先,Deployment创建ReplicaSets,然后ReplicaSets创建Pod。获取Pod的步骤包括:1) 使用标签选择器获取ReplicaSets;2) 过滤出属于特定Deployment的ReplicaSets;3) 通过标签选择器获取Pod;4) 过滤出属于特定ReplicaSets的Pod。提供的Go代码展示了如何实现这一过程。
136 0
|
8月前
|
存储 Kubernetes 对象存储
Velero 系列文章(一):基础
Velero 系列文章(一):基础
Velero 系列文章(一):基础
|
8月前
|
存储 Kubernetes 对象存储
Velero 系列文章(四):使用 Velero 进行生产迁移实战
Velero 系列文章(四):使用 Velero 进行生产迁移实战
|
8月前
|
Prometheus 监控 Cloud Native
Velero 系列文章(二):使用 Helm 安装 Velero
Velero 系列文章(二):使用 Helm 安装 Velero