Skip to content

Commit

Permalink
Merge pull request #8846 from cybozu-go/docs-fix-the-example-of-local…
Browse files Browse the repository at this point in the history
…-pvc-based-cluster

docs: fix the example of local PVC based cluster
  • Loading branch information
satoru-takeuchi committed Sep 28, 2021
2 parents a9ad913 + 8c7f2ba commit 15fd707
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 15fd707

Please sign in to comment.