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

推荐订阅源

WordPress大学
WordPress大学
J
Java Code Geeks
Martin Fowler
Martin Fowler
Microsoft Azure Blog
Microsoft Azure Blog
月光博客
月光博客
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
人人都是产品经理
人人都是产品经理
有赞技术团队
有赞技术团队
爱范儿
爱范儿
Engineering at Meta
Engineering at Meta
GbyAI
GbyAI
博客园 - 【当耐特】
Y
Y Combinator Blog
Last Week in AI
Last Week in AI
MongoDB | Blog
MongoDB | Blog
G
Google Developers Blog
博客园 - 三生石上(FineUI控件)
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
大猫的无限游戏
大猫的无限游戏
罗磊的独立博客
The Cloudflare Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
V
V2EX
博客园 - 司徒正美

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 RBD Snapshot Rollback
Nawaz Dhandala · 2026-03-31 · via OneUptime Blog

What is RBD Snapshot Rollback?

Snapshot rollback reverts an RBD image to its state at a specific snapshot point. All changes made after the snapshot was created are permanently discarded. This is useful for:

  • Recovering from application errors or bad deployments
  • Undoing accidental data deletion
  • Rolling back a failed migration

Important: Rollback is destructive. Data written after the snapshot will be lost. Always verify you have a newer backup if needed.

Prerequisites

  • An RBD image with an existing snapshot
  • Access to stop all clients so the image is no longer in use

Step 1: List Available Snapshots

rbd snap ls mypool/myimage

Output:

SNAPID  NAME            SIZE    PROTECTED  TIMESTAMP
1       snap-before-upgrade  10 GiB  no  Tue Mar 31 09:00:00 2026
2       snap-after-deploy    10 GiB  no  Tue Mar 31 11:00:00 2026

Step 2: Stop Using the Image and Confirm It Has No Open Clients

For Kubernetes PVCs, scale down the workload:

kubectl scale deployment myapp --replicas=0 -n myapp

Wait for pods to terminate:

kubectl wait --for=delete pod -l app=myapp -n myapp --timeout=120s

Then confirm Ceph sees no open clients for the image:

rbd status mypool/myimage

Step 3: Perform the Rollback

rbd snap rollback mypool/myimage@snap-before-upgrade

This rewrites the image to match the snapshot state. The time taken depends on how much data changed after the snapshot.

Progress output:

Rolling back to snapshot: 100% complete...done.

Step 4: Verify the Rollback

Map the image and check the filesystem:

DEV=$(rbd device map mypool/myimage)
mkdir -p /mnt/check
mount "$DEV" /mnt/check
ls /mnt/check
umount /mnt/check
rbd device unmap "$DEV"

Step 5: Restart the Workload

kubectl scale deployment myapp --replicas=3 -n myapp

Rollback via Kubernetes (Manual Process)

The Kubernetes VolumeSnapshot API does not support in-place rollback. To "roll back" a PVC in Kubernetes, you restore from snapshot by creating a new PVC:

apiVersion: v1
kind: PersistentVolumeClaim
metadata:
  name: myapp-pvc-rolled-back
spec:
  storageClassName: rook-ceph-block
  dataSource:
    name: snap-before-upgrade
    kind: VolumeSnapshot
    apiGroup: snapshot.storage.k8s.io
  accessModes:
    - ReadWriteOnce
  resources:
    requests:
      storage: 10Gi

Then update your deployment to use the new PVC name.

Creating a Pre-Rollback Snapshot

Before rolling back, protect the current state as a new snapshot:

rbd snap create mypool/myimage@pre-rollback-$(date +%Y%m%d%H%M%S)

This ensures you can undo the rollback if needed.

Summary

RBD snapshot rollback reverts a block device image to a previous state using rbd snap rollback. Always stop all users of the image and confirm it has no open clients before rolling back, and create a pre-rollback snapshot to preserve the ability to undo the operation. For Kubernetes PVC rollback, create a new PVC from the target VolumeSnapshot and update the workload's volume reference rather than attempting in-place rollback.