mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-17 20:00:23 +00:00
deploy: let the pool/fs name be required
Obviously expecting a pool with name `rbd` or CephFS name `myfs` will be a limitation, as the pool/fs is created by admin manually, let them choose the name that suits their requirement and come back edit it in the storage class. Making the pool/fs name as required field will give more attention, else with new users it will be mostly left unedited until one hit the errors saying no pool/fs exists. This patch clips-off the default pool/fs name and make it a mandatory field. Signed-off-by: Prasanna Kumar Kalever <prasanna.kalever@redhat.com>
This commit is contained in:
parent
f6de345cc9
commit
0c6d8fbd80
@ -14,11 +14,12 @@ parameters:
|
||||
# represent the Ceph cluster in clusterID below
|
||||
clusterID: <cluster-id>
|
||||
|
||||
# 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: <cephfs-name>
|
||||
|
||||
# (optional) Ceph pool into which volume data shall be stored
|
||||
# pool: cephfs_data
|
||||
# pool: <cephfs-data-pool>
|
||||
|
||||
# (optional) Comma separated string of Ceph-fuse mount options.
|
||||
# For eg:
|
||||
|
@ -17,13 +17,17 @@ parameters:
|
||||
# csi-config-map-sample.yaml, to accompany the string chosen to
|
||||
# represent the Ceph cluster in clusterID below
|
||||
clusterID: <cluster-id>
|
||||
# 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: <ec-data-pool>
|
||||
|
||||
# (required) Ceph pool into which the RBD image shall be created
|
||||
# eg: pool: rbdpool
|
||||
pool: <rbd-pool-name>
|
||||
|
||||
# RBD image features, CSI creates image with image-format 2
|
||||
# CSI RBD currently supports only `layering` feature.
|
||||
|
Loading…
Reference in New Issue
Block a user