🪟 Windows TippsThe Gemini desktop app is now available for Windows(11.09.2026 um 17:06 Uhr)
🕵️ SicherheitslückenBurn Out, Or Fade Away(14.09.2026 um 14:25 Uhr)
🪟 Windows TippsProfi-Edelstahlpfanne von WMF jetzt zum halben Preis erhältlich(15.09.2026 um 08:05 Uhr)
🪟 Windows TippsThe Gemini desktop app is now available for Windows(11.09.2026 um 17:06 Uhr)
🕵️ SicherheitslückenBurn Out, Or Fade Away(14.09.2026 um 14:25 Uhr)
🪟 Windows TippsProfi-Edelstahlpfanne von WMF jetzt zum halben Preis erhältlich(15.09.2026 um 08:05 Uhr)

🔧 Programmierung 🕛 vor 1 Monat 11 Min Lesezeit
0

Deploying CephFS as a Self-Hosted GCP Filestore Alternative

↗ Quelle (dev.to)
🗣️ Stimme:
📑 Inhaltsübersicht

CephFS is a POSIX-compliant distributed file system built on Ceph, deployable on Kubernetes via the Rook operator with dynamic CSI provisioning and optional NFS-Ganesha export for external clients, a self-managed, Kubernetes-native alternative to GCP Filestore. This guide deploys Rook + Ceph, creates a CephFS filesystem, provisions PVCs, exports over NFS, configures snapshots/backups, sets up CephX auth and tenant isolation, adds monitoring, and covers migrating off Filestore.






Concept Mapping


























































GCP Filestore CephFS Equivalent Description
Filestore Instance CephFilesystem Distributed shared filesystem via Rook/Ceph
Filestore NFS Export CephNFS + NFS-Ganesha Exposes CephFS over standard NFS
Filestore NFSv3/v4.1 NFS-Ganesha NFSv4 NFS client compatibility
Filestore Capacity Tiers Ceph pools + StorageClasses Performance/placement via pool settings
Filestore Snapshots VolumeSnapshot CSI point-in-time snapshots
Filestore Backups Snapshot export to object storage Backup via snapshots + external storage
Filestore Multi-share CephFS subvolumes Isolated shared volumes via CSI
Filestore Performance Tiers OSD device classes SSD/HDD OSDs with pool tuning
Cloud Monitoring Ceph Dashboard + Prometheus + Grafana Metrics + visualization


Components: Rook Operator (deploys/manages Ceph), MON/MGR (quorum + monitoring), OSDs (data on block storage), MDS (CephFS metadata), Ceph CSI driver (dynamic provisioning), NFS-Ganesha (NFS export), Prometheus + Grafana (monitoring).




Prerequisites: a Kubernetes cluster with 3+ worker nodes, each with a raw unformatted block storage volume attached; kubectl configured; Helm 3; basic Kubernetes storage familiarity.










Install the Rook Ceph Operator






CODE
$ mkdir -p ~/rook-ceph
$ cd ~/rook-ceph
$ kubectl get nodes






Confirm all nodes are Ready.




CODE
$ helm repo add rook-release https://charts.rook.io/release
$ helm repo update
$ helm install rook-ceph rook-release/rook-ceph --namespace rook-ceph --create-namespace --version v1.19.7






This installs the operator + CRDs. Pinned to v1.19.7 — a tested release that auto-provisions the rook-ceph.cephfs.csi.ceph.com CSI driver. If you use a newer version, confirm that driver exists before provisioning PVCs.




CODE
$ kubectl get pods -n rook-ceph
$ kubectl get crds | grep ceph.rook.io












Deploy the Ceph Cluster






CODE
$ nano ceph-cluster.yaml









CODE
apiVersion: ceph.rook.io/v1
kind: CephCluster
metadata:
name: rook-ceph
namespace: rook-ceph
spec:
cephVersion:
image: quay.io/ceph/ceph:v19.2.3
dataDirHostPath: /var/lib/rook
mon:
count: 3
allowMultiplePerNode: false
mgr:
count: 1
allowMultiplePerNode: false
dashboard:
enabled: true
ssl: false
storage:
useAllNodes: true
useAllDevices: false
deviceFilter: "^vd[b-z]"
resources:
mgr:
requests:
cpu: "100m"
memory: "1Gi"
limits:
memory: "2Gi"
mon:
requests:
cpu: "250m"
memory: "512Mi"
limits:
memory: "1Gi"
healthCheck:
daemonHealth:
mon:
interval: 45s
osd:
interval: 60s






deviceFilter: "^vd[b-z]" tells Rook to use only additional virtio block devices (vdb, vdc, etc.) for OSDs, excluding the primary system disk (typically vda). Check your actual device names with lsblk on each node and adjust if needed.




CODE
$ kubectl apply -f ceph-cluster.yaml
$ kubectl get pods -n rook-ceph -w






Deployment can take several minutes while MON/MGR/OSD pods initialize — see the .

Vollständiger Original-Bericht
Ausführliche Details, Code-Beispiele & Hersteller-Stellungnahme auf dev.to.
↗ Original-Artikel auf dev.to lesen
Wie bewertest du diesen Beitrag?
1 Klick Feedback
Teilen mit Netzwerk & Team:

Community-Analysen & Experten-Meinungen 0

Verfasse deine eigene Analyse, teile Workarounds oder diskutiere diesen Vorfall im Blog.
Noch keine Community-Analyse verfasst. Markiere einen Textabschnitt oder klicke oben auf Eigene Analyse verfassen“!
Community Pulse: Relevanz-Einschätzung
1 Klick Experten-Votum
🔴 Akute Relevanz 0%
🟡 In Evaluierung 0%
🟢 Keine Auswirkung 0%
Spannende Innovation 0%
Verwandte Story-Cluster & Quellen (Vektor-KI)
Port 8095 Engine
1 Quelle
The Gemini desktop app is now available for Windows
1 Quelle
Burn Out, Or Fade Away
1 Quelle
Windows 11 KB5129195 is out after Microsoft confirms major issues with the September 2026 update, but it won’t fix AMD GPU errors