惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

C
Check Point Blog
IT之家
IT之家
V
Visual Studio Blog
The Cloudflare Blog
博客园 - 司徒正美
Jina AI
Jina AI
博客园_首页
阮一峰的网络日志
阮一峰的网络日志
美团技术团队
S
SegmentFault 最新的问题
博客园 - 聂微东
人人都是产品经理
人人都是产品经理
T
Tailwind CSS Blog
罗磊的独立博客
酷 壳 – CoolShell
酷 壳 – CoolShell
量子位
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Hugging Face - Blog
Hugging Face - Blog
博客园 - 【当耐特】
博客园 - 三生石上(FineUI控件)
爱范儿
爱范儿
博客园 - Franky
Last Week in AI
Last Week in AI
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知

OneUptime Blog

How to Monitor Azure App Services (PaaS) with OpenTelemetry Grafana Stack vs OneUptime: DIY Observability or Unified Platform? Your AI Workloads Are About to Blow Up Your Observability Bill The Great Observability Consolidation Is Here How to Write Custom Object Classes for Ceph How to Write Custom Ceph Manager Modules How to Write a ceph.conf Configuration File How to Use Rook-Ceph with OpenShift How to Use Rook-Ceph with Longhorn for Comparison How to Configure Volume Snapshot Class for RBD in Rook How to Configure VolumeReplicationClass Scheduling Intervals in Rook How to Set Up Volume Replication with Rook-Ceph How to Create Volume Group Snapshots with Rook CSI How to Visualize Ceph Network Performance in Grafana How to Enable Virtual Host-Style Bucket Access in Rook How to View Runtime Configuration via Admin Socket How to View Quota Settings and Update Stats in Ceph RGW How to View PG Scaling Recommendations with autoscale-status How to View PG Distribution via Admin Socket How to View Performance Metrics in the Ceph Dashboard How to View OSD Performance Counters in Ceph How to View Connection Status via Admin Socket How to View Ceph Cluster Summary Dashboard via CLI How to Version Control Rook-Ceph Configuration How to Version Control Ceph Infrastructure with Terraform How to Verify Kubernetes Node Requirements for Rook-Ceph Deployment How to Verify Health Before and After Rook Upgrades How to Verify Data Integrity with Deep Scrubbing How to Verify Complete Rook-Ceph Cleanup How to Verify Backup Integrity from Ceph Snapshots
How to Use Rook-Ceph with Velero for Kubernetes Backup
Nawaz Dhandala · 2026-03-31 · via OneUptime Blog

How Velero Works with Rook-Ceph

Velero backs up Kubernetes resources (namespaces, deployments, PVCs) and persistent volume data. When used with Rook-Ceph, Velero can use two mechanisms for PV backup: CSI volume snapshots (using the Rook-Ceph CSI snapshotter) and Restic/Kopia file-level backup (pod filesystem backup). Velero also stores backup metadata in an S3-compatible object store, which can be Rook-Ceph's RGW.

flowchart LR
    Velero["Velero"] -->|"Kubernetes API"| K8s_Resources["K8s Resources\n(Deployments, PVCs)"]
    Velero -->|"CSI Snapshot"| PV_Data["PV Data\n(Ceph RBD Snapshots)"]
    Velero -->|"S3 API"| RGW["Rook-Ceph RGW\n(Backup Storage)"]
    PV_Data --> RGW

Prerequisites

  • Rook-Ceph cluster with RGW object store deployed
  • CSI snapshotter components installed (volumesnapshotclasses.snapshot.storage.k8s.io CRD)
  • Velero CLI installed

Step 1 - Set Up Rook-Ceph as Velero's Object Storage

Create a dedicated bucket for Velero backups:

kubectl -n rook-ceph exec -it deploy/rook-ceph-tools -- \
  radosgw-admin user create \
  --uid=velero \
  --display-name="Velero Backup User" \
  --access-key=velero-access-key \
  --secret-key=velero-secret-key

aws s3 mb s3://velero-backups \
  --endpoint-url http://rook-ceph-rgw-my-store.rook-ceph.svc.cluster.local:80

Get the RGW endpoint:

RGW_IP=$(kubectl -n rook-ceph get svc rook-ceph-rgw-my-store -o jsonpath='{.spec.clusterIP}')
echo "RGW endpoint: http://${RGW_IP}:80"

Create the Velero credentials file:

cat > velero-credentials.ini << 'EOF'
[default]
aws_access_key_id=velero-access-key
aws_secret_access_key=velero-secret-key
EOF

Step 2 - Install Velero with Rook-Ceph RGW Backend

Install Velero using the AWS plugin (compatible with S3-API RGW):

velero install \
  --provider aws \
  --plugins velero/velero-plugin-for-aws:v1.10.0 \
  --bucket velero-backups \
  --secret-file ./velero-credentials.ini \
  --backup-location-config \
    region=us-east-1,s3ForcePathStyle=true,s3Url=http://<rgw-ip>:80 \
  --use-volume-snapshots=true \
  --namespace velero

The s3ForcePathStyle=true is required for RGW compatibility.

Verify Velero is running:

kubectl -n velero get pods
velero backup-location get

Step 3 - Configure VolumeSnapshotClass for CSI Snapshots

Create a VolumeSnapshotClass that Velero will use for RBD volume snapshots:

apiVersion: snapshot.storage.k8s.io/v1
kind: VolumeSnapshotClass
metadata:
  name: csi-rbdplugin-snapclass
  labels:
    velero.io/csi-volumesnapshot-class: "true"
driver: rook-ceph.rbd.csi.ceph.com
deletionPolicy: Retain
parameters:
  clusterID: rook-ceph
  csi.storage.k8s.io/snapshotter-secret-name: rook-csi-rbd-provisioner
  csi.storage.k8s.io/snapshotter-secret-namespace: rook-ceph

The velero.io/csi-volumesnapshot-class: &quot;true&quot; label tells Velero to use this snapshot class for RBD volumes.

Apply it:

kubectl apply -f volumesnapshotclass.yaml

For CephFS:

apiVersion: snapshot.storage.k8s.io/v1
kind: VolumeSnapshotClass
metadata:
  name: csi-cephfsplugin-snapclass
  labels:
    velero.io/csi-volumesnapshot-class: "true"
driver: rook-ceph.cephfs.csi.ceph.com
deletionPolicy: Retain
parameters:
  clusterID: rook-ceph
  csi.storage.k8s.io/snapshotter-secret-name: rook-csi-cephfs-provisioner
  csi.storage.k8s.io/snapshotter-secret-namespace: rook-ceph

Step 4 - Create a Backup

Back up a specific namespace including PVCs:

velero backup create my-app-backup \
  --include-namespaces my-app \
  --snapshot-volumes=true \
  --volume-snapshot-locations default

Check backup status:

velero backup describe my-app-backup --details
velero backup logs my-app-backup

Schedule automated backups:

velero schedule create daily-backup \
  --schedule="0 2 * * *" \
  --include-namespaces my-app \
  --ttl 720h

Step 5 - Restore from Backup

List available backups:

velero backup get

Restore to a new namespace:

velero restore create my-app-restore \
  --from-backup my-app-backup \
  --namespace-mappings my-app:my-app-restored

Monitor the restore progress:

velero restore describe my-app-restore
velero restore logs my-app-restore

Verify the restored PVCs:

kubectl -n my-app-restored get pvc
kubectl -n my-app-restored get pods

Step 6 - Using Restic/Kopia for File-Level Backup

For volumes that don't support CSI snapshots (or as a complement), enable Restic/Kopia backup by adding the annotation to pods:

apiVersion: apps/v1
kind: Deployment
metadata:
  name: my-app
spec:
  template:
    metadata:
      annotations:
        backup.velero.io/backup-volumes: data-volume
    spec:
      containers:
        - name: app
          image: myapp:latest
          volumeMounts:
            - name: data-volume
              mountPath: /data
      volumes:
        - name: data-volume
          persistentVolumeClaim:
            claimName: my-app-data

Summary

Velero integrates with Rook-Ceph using two features: the RGW object store as an S3-compatible backup location for Velero metadata and snapshot data, and CSI volume snapshots for point-in-time backup of PVC data. Configure the backup location with s3ForcePathStyle=true for RGW compatibility, create VolumeSnapshotClasses labeled for Velero, and enable --use-volume-snapshots=true during Velero installation. Schedule regular backups and periodically test restores to validate recovery capability.