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

推荐订阅源

月光博客
月光博客
Martin Fowler
Martin Fowler
Last Week in AI
Last Week in AI
罗磊的独立博客
阮一峰的网络日志
阮一峰的网络日志
博客园 - 【当耐特】
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - 三生石上(FineUI控件)
S
SegmentFault 最新的问题
V
Visual Studio Blog
Hugging Face - Blog
Hugging Face - Blog
雷峰网
雷峰网
博客园_首页
人人都是产品经理
人人都是产品经理
量子位
美团技术团队
The Cloudflare Blog
小众软件
小众软件
WordPress大学
WordPress大学
有赞技术团队
有赞技术团队
M
MIT News - Artificial intelligence
Microsoft Security Blog
Microsoft Security Blog
D
DataBreaches.Net
博客园 - Franky

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 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 Verify Health Before and After Rook Upgrades
Nawaz Dhandala · 2026-03-31 · via OneUptime Blog

Health verification before and after Rook upgrades is essential for safe upgrades. Pre-upgrade checks confirm the cluster can tolerate the disruption of a rolling upgrade. Post-upgrade checks confirm everything is functioning correctly with the new version. Skipping these checks risks missing pre-existing issues that the upgrade exacerbates.

Pre-Upgrade Health Checks

Run all checks and document the baseline state before beginning any upgrade.

Cluster-Level Health

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

The cluster must show HEALTH_OK before upgrading. If it shows HEALTH_WARN or HEALTH_ERR, investigate and resolve all issues first.

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

This shows the specific reason for any health warnings. Address all HEALTH_ERR items. Some HEALTH_WARN items (like application not enabled on pool) may be acceptable, but document any warnings you choose to proceed with.

OSD Status

kubectl -n rook-ceph exec -it deploy/rook-ceph-tools -- ceph osd stat
6 osds: 6 up (since 5d), 6 in (since 5d)

All OSDs must be up and in. If any OSD is down or out, resolve it before upgrading.

kubectl -n rook-ceph exec -it deploy/rook-ceph-tools -- ceph osd df

Check OSD usage. No OSD should be near-full (above 85% usage) before upgrading.

Placement Group Status

kubectl -n rook-ceph exec -it deploy/rook-ceph-tools -- ceph pg stat
192 pgs: 192 active+clean; 5.4 GiB data, 16 GiB used, 94 GiB / 110 GiB avail

All PGs must be active+clean. PGs in degraded, undersized, peering, or incomplete states indicate the cluster is not ready for an upgrade.

Monitor Quorum

kubectl -n rook-ceph exec -it deploy/rook-ceph-tools -- ceph quorum_status --format json-pretty | python3 -m json.tool

Verify all monitors are in the quorum list.

Kubernetes Pod Status

kubectl -n rook-ceph get pods | grep -v Running | grep -v Completed

All Rook pods should be Running. Any CrashLoopBackOff or Error pods need investigation.

Recording Baseline State

Save the pre-upgrade state for comparison:

TIMESTAMP=$(date +%Y%m%d-%H%M%S)
BASELINE_DIR="rook-upgrade-baseline-${TIMESTAMP}"
mkdir -p "$BASELINE_DIR"

kubectl -n rook-ceph exec deploy/rook-ceph-tools -- ceph status > "${BASELINE_DIR}/ceph-status.txt"
kubectl -n rook-ceph exec deploy/rook-ceph-tools -- ceph osd df > "${BASELINE_DIR}/osd-df.txt"
kubectl -n rook-ceph exec deploy/rook-ceph-tools -- ceph pg stat > "${BASELINE_DIR}/pg-stat.txt"
kubectl -n rook-ceph exec deploy/rook-ceph-tools -- ceph versions > "${BASELINE_DIR}/versions.txt"
kubectl -n rook-ceph get pods -o wide > "${BASELINE_DIR}/pods.txt"
kubectl -n rook-ceph get deployment -o wide > "${BASELINE_DIR}/deployments.txt"

echo "Baseline saved to ${BASELINE_DIR}"

During Upgrade Monitoring

While the upgrade is in progress, monitor the cluster continuously:

watch -n 15 "kubectl -n rook-ceph exec deploy/rook-ceph-tools -- ceph status 2>/dev/null | head -20"

Also watch pod restarts:

kubectl -n rook-ceph get pods -w

It is normal to see brief HEALTH_WARN states during rolling restarts of daemons. This should resolve within minutes of each daemon restarting.

Post-Upgrade Health Checks

Run the same checks as pre-upgrade and compare against the baseline.

Verify Cluster Health

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

Verify All Daemons on New Version

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

All mon, mgr, osd, and mds daemons should show the new Ceph version.

Verify Pod Images

kubectl -n rook-ceph get pods -o jsonpath='{range .items[*]}{.metadata.name}{"\t"}{.spec.containers[0].image}{"\n"}{end}' | sort

Storage Functionality Test

After upgrading, test that storage still works by writing and reading data:

# Test block storage
kubectl -n rook-ceph exec -it deploy/rook-ceph-tools -- \
  rbd -p replicapool create test-image --size 10M
kubectl -n rook-ceph exec -it deploy/rook-ceph-tools -- \
  rbd -p replicapool info test-image
kubectl -n rook-ceph exec -it deploy/rook-ceph-tools -- \
  rbd -p replicapool rm test-image

# Test object storage
kubectl -n rook-ceph exec -it deploy/rook-ceph-tools -- \
  rados -p replicapool put upgrade-test /etc/hostname
kubectl -n rook-ceph exec -it deploy/rook-ceph-tools -- \
  rados -p replicapool rm upgrade-test

Summary

Verify Rook-Ceph upgrade success by running a complete set of health checks before and after the upgrade, saving a baseline snapshot for comparison, monitoring cluster health continuously during the upgrade, and performing functional storage tests after completion. The cluster must show HEALTH_OK with all OSDs up and all PGs active+clean before starting any upgrade. Post-upgrade, confirm all daemons report the new version using ceph versions.