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

推荐订阅源

有赞技术团队
有赞技术团队
Stack Overflow Blog
Stack Overflow Blog
爱范儿
爱范儿
B
Blog
博客园 - 三生石上(FineUI控件)
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
A
About on SuperTechFans
C
Check Point Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
P
Proofpoint News Feed
Engineering at Meta
Engineering at Meta
Y
Y Combinator Blog
WordPress大学
WordPress大学
小众软件
小众软件
博客园 - 司徒正美
Apple Machine Learning Research
Apple Machine Learning Research
Recent Announcements
Recent Announcements
L
LangChain Blog
大猫的无限游戏
大猫的无限游戏
阮一峰的网络日志
阮一峰的网络日志
D
DataBreaches.Net
博客园 - 聂微东
Microsoft Security Blog
Microsoft Security 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.