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

推荐订阅源

云风的 BLOG
云风的 BLOG
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
J
Java Code Geeks
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Engineering at Meta
Engineering at Meta
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
小众软件
小众软件
博客园 - 聂微东
酷 壳 – CoolShell
酷 壳 – CoolShell
月光博客
月光博客
Last Week in AI
Last Week in AI
博客园_首页
I
InfoQ
T
Tailwind CSS Blog
爱范儿
爱范儿
雷峰网
雷峰网
Recent Announcements
Recent Announcements
F
Fortinet All Blogs
B
Blog
WordPress大学
WordPress大学
A
About on SuperTechFans
V
Visual Studio Blog
有赞技术团队
有赞技术团队
P
Proofpoint News Feed

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 Ceph RGW for Backup Repository Storage
Nawaz Dhandala · 2026-03-31 · via OneUptime Blog

Why Ceph RGW for Backup Storage?

Backup repositories need reliable, scalable, and cost-effective object storage. Ceph RGW provides:

  • S3-compatible API compatible with Velero, Restic, Rclone, Duplicati
  • Immutable object support for ransomware protection
  • On-premises data for air-gapped backup compliance
  • Compression (zstd) can reduce backup storage by 2-4x
  • Erasure coding for cost-effective durability

Step 1: Create a Backup Bucket

# Create bucket with Object Lock enabled (required if you plan to use immutable backups)
aws s3api create-bucket \
  --bucket k8s-backups \
  --object-lock-enabled-for-bucket \
  --endpoint-url https://rgw.example.com

# Enable versioning (required for Velero and Object Lock)
aws s3api put-bucket-versioning \
  --bucket k8s-backups \
  --versioning-configuration Status=Enabled \
  --endpoint-url https://rgw.example.com

Step 2: Create a Dedicated Backup User

radosgw-admin user create \
  --uid backup-user \
  --display-name "Backup Service Account" \
  --max-buckets 100

radosgw-admin user info --uid backup-user | jq '.keys[0]'

Step 3: Configure Velero with Ceph RGW

Create a credentials file:

cat > /tmp/credentials-velero << EOF
[default]
aws_access_key_id=<access-key>
aws_secret_access_key=<secret-key>
EOF

Install Velero with the S3 plugin:

velero install \
  --provider aws \
  --plugins velero/velero-plugin-for-aws:v1.8.0 \
  --bucket k8s-backups \
  --secret-file /tmp/credentials-velero \
  --use-volume-snapshots=false \
  --backup-location-config \
    region=us-east-1,\
    s3ForcePathStyle=true,\
    s3Url=https://rgw.example.com

Verify the backup location:

velero backup-location get

Step 4: Configure Restic with Ceph RGW

export AWS_ACCESS_KEY_ID=your-access-key
export AWS_SECRET_ACCESS_KEY=your-secret-key
export RESTIC_REPOSITORY=s3:https://rgw.example.com/restic-backups
export RESTIC_PASSWORD=strong-backup-password

# Initialize the Restic repository
restic init

# Back up a directory
restic backup /data/important --host myserver

# List snapshots
restic snapshots

Step 5: Enable Compression on the Backup Pool

Backup data (especially databases and config files) compresses very well:

ceph osd pool set default.rgw.buckets.data compression_mode force
ceph osd pool set default.rgw.buckets.data compression_algorithm zstd

Step 6: Configure Object Lifecycle for Backup Retention

Keep backups for 90 days:

{
  "Rules": [{
    "ID": "backup-retention",
    "Filter": { "Prefix": "" },
    "Status": "Enabled",
    "NoncurrentVersionExpiration": {
      "NoncurrentDays": 90
    },
    "Expiration": {
      "Days": 90
    }
  }]
}
aws s3api put-bucket-lifecycle-configuration \
  --bucket k8s-backups \
  --lifecycle-configuration file://backup-lifecycle.json \
  --endpoint-url https://rgw.example.com

Step 7: Enable Object Lock for Immutable Backups

Object Lock prevents backup data from being modified or deleted for a defined period:

aws s3api put-object-lock-configuration \
  --bucket k8s-backups \
  --object-lock-configuration '{"ObjectLockEnabled":"Enabled","Rule":{"DefaultRetention":{"Mode":"GOVERNANCE","Days":30}}}' \
  --endpoint-url https://rgw.example.com

Running a Test Backup and Restore with Velero

# Create a test backup
velero backup create test-backup --include-namespaces default

# Check backup status
velero backup get

# Simulate a restore
velero restore create --from-backup test-backup --namespace-mappings default:restored
velero restore get

Summary

Ceph RGW makes an excellent backup repository backend due to its S3 compatibility, scalability, and support for features like versioning, object lock, and lifecycle management. Configure Velero with path-style S3 access to point at Ceph RGW, enable zstd compression on the backup pool for significant storage savings, and use object lock in governance or compliance mode to prevent backup tampering. Always test restores regularly to verify backup integrity.