Skip to content

Commit

Permalink
Merge pull request #8847 from rook/mergify/bp/release-1.7/pr-8846
Browse files Browse the repository at this point in the history
docs: fix the example of local PVC based cluster (backport #8846)
  • Loading branch information
satoru-takeuchi committed Sep 28, 2021
2 parents 55afee2 + f3c8245 commit a1c6249
Showing 1 changed file with 5 additions and 3 deletions.
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

0 comments on commit a1c6249

Please sign in to comment.