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

推荐订阅源

人人都是产品经理
人人都是产品经理
量子位
月光博客
月光博客
罗磊的独立博客
宝玉的分享
宝玉的分享
博客园_首页
酷 壳 – CoolShell
酷 壳 – CoolShell
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
WordPress大学
WordPress大学
博客园 - 叶小钗
博客园 - 聂微东
阮一峰的网络日志
阮一峰的网络日志
V
V2EX
雷峰网
雷峰网
博客园 - 三生石上(FineUI控件)
Jina AI
Jina AI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - Franky
美团技术团队
爱范儿
爱范儿
V
Visual Studio Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Y
Y Combinator Blog

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 Upgrade the Ceph Version in Rook
Nawaz Dhandala · 2026-03-31 · via OneUptime Blog

How Ceph Version Upgrades Work in Rook

When you upgrade the Ceph version in a Rook-managed cluster, the Rook operator performs a controlled rolling upgrade of all Ceph daemons. It upgrades components in this order: MONs, MGRs, OSDs, then MDSs and RGWs. At each step, it waits for the component to be healthy before proceeding.

flowchart TD
    A[Update CephCluster spec.cephVersion.image] --> B[Rook Operator Detects Change]
    B --> C[Upgrade MON Daemons]
    C --> D[Upgrade MGR Daemons]
    D --> E[Upgrade OSD Daemons]
    E --> F[Upgrade MDS/RGW Daemons]
    F --> G[Verify Cluster Health]
    G --> H[Upgrade Complete]

Prerequisites

Before upgrading the Ceph version:

  • The Rook operator must support the target Ceph version. Check the Rook compatibility matrix.
  • The Ceph cluster must be in HEALTH_OK state before starting.
  • You must be upgrading sequentially - do not skip major Ceph versions.

Check the current Ceph version:

kubectl -n rook-ceph exec -it deploy/rook-ceph-tools -- ceph version

Check current cluster health:

kubectl -n rook-ceph exec -it deploy/rook-ceph-tools -- ceph status

Finding the Right Ceph Image

Rook uses official Ceph container images. Find the correct image tag on Quay.io.

Common Ceph image tags follow this pattern:

quay.io/ceph/ceph:v18.2.4
quay.io/ceph/ceph:v19.2.0

Always use a specific version tag rather than latest to ensure reproducibility.

Updating the CephCluster Spec

To trigger the upgrade, update the cephVersion.image field in your CephCluster resource.

Edit the CephCluster directly:

kubectl -n rook-ceph edit cephcluster rook-ceph

Or patch it with a specific image:

kubectl -n rook-ceph patch cephcluster rook-ceph --type merge \
  -p '{"spec":{"cephVersion":{"image":"quay.io/ceph/ceph:v19.2.0"}}}'

The full relevant section of the CephCluster spec looks like this:

apiVersion: ceph.rook.io/v1
kind: CephCluster
metadata:
  name: rook-ceph
  namespace: rook-ceph
spec:
  cephVersion:
    image: quay.io/ceph/ceph:v19.2.0
    allowUnsupported: false
  dataDirHostPath: /var/lib/rook

The allowUnsupported: false field ensures Rook will refuse to use a Ceph version it does not officially support.

Monitoring the Upgrade Progress

Watch the operator logs to follow the upgrade steps:

kubectl -n rook-ceph logs -f deployment/rook-ceph-operator

Monitor the pod restarts in the rook-ceph namespace:

watch kubectl -n rook-ceph get pods

Check the CephCluster status conditions:

kubectl -n rook-ceph get cephcluster rook-ceph -o jsonpath='{.status.conditions}' | python3 -m json.tool

The phase field shows the current state:

kubectl -n rook-ceph get cephcluster rook-ceph -o jsonpath='{.status.phase}'

Verifying Each Stage

After MON upgrade, confirm all MONs are in quorum:

kubectl -n rook-ceph exec -it deploy/rook-ceph-tools -- ceph mon stat

After OSD upgrade, confirm all OSDs are up and in:

kubectl -n rook-ceph exec -it deploy/rook-ceph-tools -- ceph osd stat
kubectl -n rook-ceph exec -it deploy/rook-ceph-tools -- ceph osd tree

Check for any HEALTH_WARN or HEALTH_ERR conditions:

kubectl -n rook-ceph exec -it deploy/rook-ceph-tools -- ceph health detail

Handling Upgrade Failures

If an OSD fails to upgrade, check the OSD pod logs:

kubectl -n rook-ceph logs -l app=rook-ceph-osd --tail=100

If the cluster gets stuck in Updating state, check the operator logs for the specific failure reason. A common issue is insufficient PGs or objects in a non-clean state blocking OSD upgrades.

To prevent OSDs from being marked out during the rolling restart, set the noout flag:

kubectl -n rook-ceph exec -it deploy/rook-ceph-tools -- ceph osd set noout

After resolving the issue and completing the upgrade, unset the flag:

kubectl -n rook-ceph exec -it deploy/rook-ceph-tools -- ceph osd unset noout

To allow the upgrade to proceed even when the cluster is not fully healthy, update the CephCluster spec (use with caution):

kubectl -n rook-ceph patch cephcluster rook-ceph --type merge \
  -p '{"spec":{"continueUpgradeAfterChecksEvenIfNotHealthy":true}}'

Post-Upgrade Validation

After the upgrade completes, verify the new version across all daemons:

kubectl -n rook-ceph exec -it deploy/rook-ceph-tools -- ceph versions

Run a full cluster health check:

kubectl -n rook-ceph exec -it deploy/rook-ceph-tools -- ceph status
kubectl -n rook-ceph exec -it deploy/rook-ceph-tools -- ceph df
kubectl -n rook-ceph exec -it deploy/rook-ceph-tools -- ceph osd pool ls detail

Summary

Upgrading the Ceph version in Rook is done by updating the cephVersion.image field in the CephCluster resource. Rook handles the rolling upgrade automatically, proceeding through MONs, MGRs, OSDs, and gateway daemons in sequence. Monitor the upgrade through operator logs and ceph status, and always ensure the cluster is healthy before and after the upgrade to avoid data unavailability.