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

推荐订阅源

G
Google Developers Blog
GbyAI
GbyAI
Y
Y Combinator Blog
The GitHub Blog
The GitHub Blog
B
Blog
博客园 - 叶小钗
V
Visual Studio Blog
小众软件
小众软件
阮一峰的网络日志
阮一峰的网络日志
博客园 - 聂微东
S
SegmentFault 最新的问题
Engineering at Meta
Engineering at Meta
博客园 - Franky
V
V2EX
人人都是产品经理
人人都是产品经理
H
Hackread – Cybersecurity News, Data Breaches, AI and More
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
月光博客
月光博客
IT之家
IT之家
T
The Blog of Author Tim Ferriss
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
C
Check Point Blog
N
Netflix TechBlog - Medium
博客园 - 【当耐特】

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 Rook-Ceph with Kubernetes Operators
Nawaz Dhandala · 2026-03-31 · via OneUptime Blog

Kubernetes Operators automate the lifecycle of complex applications like databases and message queues. Rook-Ceph integrates with these operators by providing StorageClasses that operators use to provision persistent storage automatically when creating managed resources.

How Operators Use Storage

Most database operators (PostgreSQL, MySQL, Kafka, etc.) accept a storageClassName in their CRD spec. The operator then creates PVCs using that StorageClass for the resources it manages. Rook-Ceph simply needs to provide appropriately configured StorageClasses.

Creating Operator-Ready StorageClasses

Operators need different storage profiles depending on the workload:

# High-performance block storage for databases
apiVersion: storage.k8s.io/v1
kind: StorageClass
metadata:
  name: rook-ceph-operator-db
provisioner: rook-ceph.rbd.csi.ceph.com
parameters:
  clusterID: rook-ceph
  pool: database-pool
  imageFormat: "2"
  imageFeatures: layering
  csi.storage.k8s.io/provisioner-secret-name: rook-csi-rbd-provisioner
  csi.storage.k8s.io/provisioner-secret-namespace: rook-ceph
  csi.storage.k8s.io/node-stage-secret-name: rook-csi-rbd-node
  csi.storage.k8s.io/node-stage-secret-namespace: rook-ceph
reclaimPolicy: Retain
allowVolumeExpansion: true
volumeBindingMode: WaitForFirstConsumer

Integrating with CloudNativePG (PostgreSQL Operator)

CloudNativePG is a popular PostgreSQL operator that uses StorageClasses for data and WAL volumes:

apiVersion: postgresql.cnpg.io/v1
kind: Cluster
metadata:
  name: postgres-cluster
  namespace: databases
spec:
  instances: 3
  storage:
    size: 100Gi
    storageClass: rook-ceph-operator-db
  walStorage:
    size: 20Gi
    storageClass: rook-ceph-operator-db
  backup:
    barmanObjectStore:
      destinationPath: s3://pg-backups
      endpointURL: http://rook-ceph-rgw-backup-store.rook-ceph.svc.cluster.local
      s3Credentials:
        accessKeyId:
          name: pg-backup-creds
          key: ACCESS_KEY_ID
        secretAccessKey:
          name: pg-backup-creds
          key: SECRET_ACCESS_KEY

Integrating with Strimzi (Kafka Operator)

Strimzi deploys Apache Kafka and uses StorageClasses per broker:

apiVersion: kafka.strimzi.io/v1beta2
kind: Kafka
metadata:
  name: my-kafka
  namespace: messaging
spec:
  kafka:
    replicas: 3
    storage:
      type: persistent-claim
      size: 200Gi
      class: rook-ceph-operator-db
      deleteClaim: false
  zookeeper:
    replicas: 3
    storage:
      type: persistent-claim
      size: 10Gi
      class: rook-ceph-operator-db

Integrating with Redis Operator (Redis Enterprise)

Configure the Redis Operator to use Rook storage:

apiVersion: app.redislabs.com/v1
kind: RedisEnterpriseCluster
metadata:
  name: rec
  namespace: redis
spec:
  nodes: 3
  redisEnterpriseNodeResources:
    requests:
      memory: 4Gi
  persistentSpec:
    enabled: true
    storageClassName: rook-ceph-operator-db
    volumeSize: 20Gi

Monitoring PVC Lifecycle Across Operators

Track PVC usage across all operators:

# List all PVCs across namespaces with their StorageClass
kubectl get pvc -A \
  -o custom-columns='NAMESPACE:.metadata.namespace,NAME:.metadata.name,CLASS:.spec.storageClassName,SIZE:.spec.resources.requests.storage,STATUS:.status.phase'

# Find PVCs using Rook StorageClasses
kubectl get pvc -A | grep rook-ceph

Summary

Rook-Ceph integrates with Kubernetes Operators by providing StorageClasses that operators reference when provisioning persistent volumes. CloudNativePG, Strimzi, and Redis operators all accept storageClass fields in their CRD specs. A well-designed set of Rook StorageClasses covering different performance profiles (with reclaimPolicy: Retain and WaitForFirstConsumer) gives operators the flexibility they need while protecting data from accidental deletion.