Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: fix the example of local PVC based cluster #8846

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 5 additions & 3 deletions cluster/examples/kubernetes/ceph/cluster-on-local-pvc.yaml
Expand Up @@ -26,7 +26,8 @@ spec:
accessModes:
- ReadWriteOnce
persistentVolumeReclaimPolicy: Retain
volumeMode: Block
# PV for mon must be a filesystem volume.
volumeMode: Filesystem
local:
# If you want to use dm devices like logical volume, please replace `/dev/sdb` with their device names like `/dev/vg-name/lv-name`.
path: /dev/sdb
Expand All @@ -50,6 +51,7 @@ spec:
accessModes:
- ReadWriteOnce
persistentVolumeReclaimPolicy: Retain
# PV for OSD must be a block volume.
volumeMode: Block
local:
path: /dev/sdc
Expand All @@ -73,7 +75,7 @@ spec:
accessModes:
- ReadWriteOnce
persistentVolumeReclaimPolicy: Retain
volumeMode: Block
volumeMode: Filesystem
local:
path: /dev/sdb
nodeAffinity:
Expand Down Expand Up @@ -119,7 +121,7 @@ spec:
accessModes:
- ReadWriteOnce
persistentVolumeReclaimPolicy: Retain
volumeMode: Block
volumeMode: Filesystem
local:
path: /dev/sdb
nodeAffinity:
Expand Down