diff --git a/examples/cephfs/storageclass.yaml b/examples/cephfs/storageclass.yaml index 965c8ce8e..782fa48e2 100644 --- a/examples/cephfs/storageclass.yaml +++ b/examples/cephfs/storageclass.yaml @@ -14,11 +14,12 @@ parameters: # represent the Ceph cluster in clusterID below clusterID: - # CephFS filesystem name into which the volume shall be created - fsName: myfs + # (required) CephFS filesystem name into which the volume shall be created + # eg: fsName: myfs + fsName: # (optional) Ceph pool into which volume data shall be stored - # pool: cephfs_data + # pool: # (optional) Comma separated string of Ceph-fuse mount options. # For eg: diff --git a/examples/rbd/storageclass.yaml b/examples/rbd/storageclass.yaml index 76a7573ef..9baf7e8f3 100644 --- a/examples/rbd/storageclass.yaml +++ b/examples/rbd/storageclass.yaml @@ -17,13 +17,17 @@ parameters: # csi-config-map-sample.yaml, to accompany the string chosen to # represent the Ceph cluster in clusterID below clusterID: - # If you want to use erasure coded pool with RBD, you need to create - # two pools. one erasure coded and one replicated. + + # (optional) If you want to use erasure coded pool with RBD, you need to + # create two pools. one erasure coded and one replicated. # You need to specify the replicated pool here in the `pool` parameter, it is # used for the metadata of the images. # The erasure coded pool must be set as the `dataPool` parameter below. - # dataPool: ec-data-pool - pool: rbd + # dataPool: + + # (required) Ceph pool into which the RBD image shall be created + # eg: pool: rbdpool + pool: # RBD image features, CSI creates image with image-format 2 # CSI RBD currently supports only `layering` feature.