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

推荐订阅源

D
DataBreaches.Net
MongoDB | Blog
MongoDB | Blog
GbyAI
GbyAI
L
LangChain Blog
B
Blog
博客园 - 三生石上(FineUI控件)
Martin Fowler
Martin Fowler
博客园 - 【当耐特】
Recent Announcements
Recent Announcements
P
Proofpoint News Feed
U
Unit 42
Last Week in AI
Last Week in AI
WordPress大学
WordPress大学
有赞技术团队
有赞技术团队
雷峰网
雷峰网
Microsoft Security Blog
Microsoft Security Blog
T
The Blog of Author Tim Ferriss
爱范儿
爱范儿
小众软件
小众软件
I
InfoQ
G
Google Developers Blog
大猫的无限游戏
大猫的无限游戏
人人都是产品经理
人人都是产品经理
C
Check Point 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 Rook Operator on Kubernetes
Nawaz Dhandala · 2026-03-31 · via OneUptime Blog

How Rook Operator Upgrades Work

The Rook operator manages the lifecycle of the Ceph cluster inside Kubernetes. When you upgrade the Rook operator, the running Ceph daemons are not immediately restarted - the operator itself is updated first, then it coordinates rolling updates to the Ceph cluster components. This separation lets you upgrade the management plane independently of the storage plane.

The upgrade process follows this sequence:

flowchart TD
    A[Check Current Rook Version] --> B[Review Release Notes]
    B --> C[Backup CRDs and Configuration]
    C --> D[Update CRDs]
    D --> E[Upgrade Rook Operator]
    E --> F[Verify Operator Pod Running]
    F --> G[Monitor Ceph Cluster Status]
    G --> H[Upgrade Complete]

Prerequisites

Before upgrading, ensure:

  • The Ceph cluster is healthy (ceph status shows HEALTH_OK or HEALTH_WARN with non-critical warnings)
  • You have kubectl configured with cluster admin access
  • You have a backup of your CephCluster CRDs and any custom configurations
  • You have reviewed the Rook upgrade guide for breaking changes between versions

Check the current Rook operator version:

kubectl -n rook-ceph get deployment rook-ceph-operator -o jsonpath='{.spec.template.spec.containers[0].image}'

Check the current Ceph cluster health:

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

Upgrading with Helm

If you deployed Rook using Helm, upgrading is straightforward.

First, update your Helm repo:

helm repo update rook-release

Check the available chart versions:

helm search repo rook-release/rook-ceph --versions | head -10

Review the values diff before upgrading to understand what has changed:

helm diff upgrade rook-ceph rook-release/rook-ceph \
  --namespace rook-ceph \
  --version 1.16.0

Apply the upgrade:

helm upgrade rook-ceph rook-release/rook-ceph \
  --namespace rook-ceph \
  --version 1.16.0 \
  --reuse-values

Update the CephCluster chart separately if you also manage it via Helm:

helm upgrade rook-ceph-cluster rook-release/rook-ceph-cluster \
  --namespace rook-ceph \
  --version 1.16.0 \
  --reuse-values

Upgrading with kubectl and Manifests

If you deployed Rook with raw manifests, follow these steps.

Download the new CRDs for the target version and apply them:

kubectl apply --server-side -f \
  https://raw.githubusercontent.com/rook/rook/v1.16.0/deploy/examples/crds.yaml

Apply the new common RBAC resources:

kubectl apply -f \
  https://raw.githubusercontent.com/rook/rook/v1.16.0/deploy/examples/common.yaml

Apply the updated operator deployment:

kubectl apply -f \
  https://raw.githubusercontent.com/rook/rook/v1.16.0/deploy/examples/operator.yaml

Watch the operator pod restart and come up with the new version:

kubectl -n rook-ceph rollout status deployment/rook-ceph-operator

Verifying the Upgrade

After the operator upgrades, verify the new operator image is running:

kubectl -n rook-ceph get pod -l app=rook-ceph-operator -o jsonpath='{.items[0].spec.containers[0].image}'

Watch the Rook operator logs for any errors:

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

Confirm the Ceph cluster health has not degraded:

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

Check that all Rook-managed pods are running:

kubectl -n rook-ceph get pods

Handling CRD Updates

Between major versions, Rook CRDs often gain new fields or change existing ones. Always apply CRDs before the operator upgrade. If you see errors about unknown fields, patch the CRDs using server-side apply:

kubectl apply --server-side --force-conflicts -f crds.yaml

Verify the CRDs have the correct version:

kubectl get crd cephclusters.ceph.rook.io -o jsonpath='{.metadata.annotations.controller-gen\.kubebuilder\.io/version}'

Rollback Strategy

If something goes wrong, roll back the operator deployment to the previous image:

kubectl -n rook-ceph rollout undo deployment/rook-ceph-operator

Verify the rollback:

kubectl -n rook-ceph rollout status deployment/rook-ceph-operator
kubectl -n rook-ceph get pod -l app=rook-ceph-operator

Note: rolling back the operator does not roll back CRD changes. If you applied new CRDs, you may need to restore them from a backup.

Summary

Upgrading the Rook operator involves updating CRDs first, then the operator deployment, either via Helm or raw manifests. The operator upgrade does not immediately restart Ceph daemons, giving you time to verify stability before Ceph component upgrades proceed. Always check cluster health before and after the upgrade, and keep a rollback plan ready by noting the previous operator image tag.