1
0
mirror of https://github.com/funkypenguin/geek-cookbook/ synced 2025-12-13 09:46:23 +00:00
Files
geek-cookbook/docs/kubernetes/persistence/rook-ceph/index.md
David Young abf9309cb1 Experiment with PDF generation
Signed-off-by: David Young <davidy@funkypenguin.co.nz>
2022-08-19 16:40:53 +12:00

1.2 KiB

title, description
title description
How to use Rook Ceph for Persistent Storage in Kubernetes How to deploy Rook Ceph into your Kubernetes cluster for persistent storage

Persistent storage in Kubernetes with Rook Ceph / CephFS

Ceph is a highly-reliable, scalable network storage platform which uses individual disks across participating nodes to provide fault-tolerant storage.

Ceph Screenshot{ loading=lazy }

Rook provides an operator for Ceph, decomposing the 10-year-old, at-time-arcane, platform into cloud-native components, created declaratively, whose lifecycle is managed by an operator.

The simplest way to think about running rook-ceph is separate the operator (a generic worker which manages the lifecycle of your cluster) from your desired cluster config itself (spec).

To this end, I've defined each as a separate component, below:

  1. First, install the operator
  2. Then, define your cluster
  3. Win!