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

推荐订阅源

J
Java Code Geeks
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
有赞技术团队
有赞技术团队
博客园 - 【当耐特】
云风的 BLOG
云风的 BLOG
Martin Fowler
Martin Fowler
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
量子位
Engineering at Meta
Engineering at Meta
博客园 - 叶小钗
T
The Blog of Author Tim Ferriss
Recent Announcements
Recent Announcements
罗磊的独立博客
B
Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
U
Unit 42
Microsoft Azure Blog
Microsoft Azure Blog
D
Docker
N
Netflix TechBlog - Medium
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
B
Blog RSS Feed
I
InfoQ
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
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 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
How to Configure Volume Snapshot Class for RBD in Rook
Nawaz Dhandala · 2026-03-31 · via OneUptime Blog

VolumeSnapshotClass defines the parameters used when creating volume snapshots via the Kubernetes snapshot API. For Rook-Ceph RBD volumes, the snapshot class tells the CSI driver which Ceph cluster to use and which credentials to authenticate with.

Snapshot Architecture

flowchart LR
    A[VolumeSnapshot CR] --> B[VolumeSnapshotClass]
    B --> C[Rook CSI RBD Snapshotter]
    C --> D[Ceph RBD Snapshot]
    D --> E[VolumeSnapshotContent]
    E --> F[Restore to new PVC]

Prerequisites

  • Kubernetes 1.20+ with snapshot CRDs installed
  • Rook CSI snapshotter sidecar running
  • VolumeSnapshot CRDs installed

Install Snapshot CRDs

# Install snapshot CRDs (if not already present)
kubectl apply -f https://raw.githubusercontent.com/kubernetes-csi/external-snapshotter/v6.3.0/client/config/crd/snapshot.storage.k8s.io_volumesnapshotclasses.yaml
kubectl apply -f https://raw.githubusercontent.com/kubernetes-csi/external-snapshotter/v6.3.0/client/config/crd/snapshot.storage.k8s.io_volumesnapshotcontents.yaml
kubectl apply -f https://raw.githubusercontent.com/kubernetes-csi/external-snapshotter/v6.3.0/client/config/crd/snapshot.storage.k8s.io_volumesnapshots.yaml

# Install snapshot controller
kubectl apply -f https://raw.githubusercontent.com/kubernetes-csi/external-snapshotter/v6.3.0/deploy/kubernetes/snapshot-controller/rbac-snapshot-controller.yaml
kubectl apply -f https://raw.githubusercontent.com/kubernetes-csi/external-snapshotter/v6.3.0/deploy/kubernetes/snapshot-controller/setup-snapshot-controller.yaml

Create the VolumeSnapshotClass for RBD

apiVersion: snapshot.storage.k8s.io/v1
kind: VolumeSnapshotClass
metadata:
  name: csi-rbdplugin-snapclass
  annotations:
    snapshot.storage.kubernetes.io/is-default-class: "true"
driver: rook-ceph.rbd.csi.ceph.com
deletionPolicy: Delete    # or 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

Apply it:

kubectl apply -f volumesnapshotclass-rbd.yaml
kubectl get volumesnapshotclass

VolumeSnapshotClass with Retain Policy

Use Retain to keep the snapshot data even after deleting the VolumeSnapshot object:

apiVersion: snapshot.storage.k8s.io/v1
kind: VolumeSnapshotClass
metadata:
  name: csi-rbdplugin-snapclass-retain
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

Create a VolumeSnapshot

apiVersion: snapshot.storage.k8s.io/v1
kind: VolumeSnapshot
metadata:
  name: rbd-pvc-snapshot
  namespace: default
spec:
  volumeSnapshotClassName: csi-rbdplugin-snapclass
  source:
    persistentVolumeClaimName: my-rbd-pvc
kubectl apply -f snapshot.yaml
kubectl get volumesnapshot
kubectl describe volumesnapshot rbd-pvc-snapshot

Restore a PVC from Snapshot

apiVersion: v1
kind: PersistentVolumeClaim
metadata:
  name: restore-from-snapshot
  namespace: default
spec:
  accessModes:
    - ReadWriteOnce
  resources:
    requests:
      storage: 10Gi
  storageClassName: ceph-rbd
  dataSource:
    name: rbd-pvc-snapshot
    kind: VolumeSnapshot
    apiGroup: snapshot.storage.k8s.io

Clone a PVC Directly (Without Snapshot)

apiVersion: v1
kind: PersistentVolumeClaim
metadata:
  name: cloned-pvc
  namespace: default
spec:
  accessModes:
    - ReadWriteOnce
  resources:
    requests:
      storage: 10Gi
  storageClassName: ceph-rbd
  dataSource:
    name: my-rbd-pvc       # source PVC
    kind: PersistentVolumeClaim

Check Snapshot Status in Ceph

kubectl exec -n rook-ceph deploy/rook-ceph-tools -- bash

# List snapshots in the pool
rbd snap ls replicapool/csi-vol-xxxxxxxx

# Show snapshot size
rbd snap info replicapool/csi-vol-xxxxxxxx@csi-snap-yyyyyyy

Troubleshooting

# Check if CSI provisioner has snapshotter sidecar
kubectl get pods -n rook-ceph -l app=csi-rbdplugin-provisioner -o jsonpath=\
'{range .items[*]}{.metadata.name}{"\n"}{range .spec.containers[*]}{.name}{"\n"}{end}{end}'

# Check snapshot controller logs
kubectl logs -n kube-system deploy/snapshot-controller

# Check VolumeSnapshotContent
kubectl get volumesnapshotcontent
kubectl describe volumesnapshotcontent <name>

Summary

A VolumeSnapshotClass for Rook-Ceph RBD configures the CSI snapshotter with the cluster ID and credentials needed to create RBD snapshots. Set deletionPolicy: Delete for ephemeral snapshots and Retain for long-lived backups. Once the class is in place, VolumeSnapshot objects trigger point-in-time snapshots, and dataSource references in PVC definitions enable restores or clones.