examples: cephfs storage class: changed the comments a bit

This commit is contained in:
gman 2018-08-08 15:20:41 +02:00
parent 1c38412e39
commit 06a2a069fd

View File

@ -7,9 +7,12 @@ parameters:
# Comma separated list of Ceph monitors # Comma separated list of Ceph monitors
monitors: mon1:port,mon2:port,... monitors: mon1:port,mon2:port,...
# If set to true, a new volume will be created along with a RADOS user - this requires admin access. # For provisionVolume: "true":
# If set to false, it is assumed the volume already exists and the user is expected to provide # A new volume will be created along with a new Ceph user.
# a rootPath to a cephfs volume and user credentials. # Requires admin credentials (adminID, adminKey).
# For provisionVolume: "false":
# It is assumed the volume already exists and the user is expected
# to provide path to that volume (rootPath) and user credentials (userID, userKey).
provisionVolume: "true" provisionVolume: "true"
# Ceph pool into which the volume shall be created # Ceph pool into which the volume shall be created
@ -27,7 +30,7 @@ parameters:
csiNodeStageSecretNamespace: default csiNodeStageSecretNamespace: default
# (optional) The driver can use either ceph-fuse (fuse) or ceph kernel client (kernel) # (optional) The driver can use either ceph-fuse (fuse) or ceph kernel client (kernel)
# If left out, default volume mounter will be used - this is determined by probing for ceph-fuse # If omitted, default volume mounter will be used - this is determined by probing for ceph-fuse
# or by setting the default mounter explicitly via --volumemounter command-line argument. # or by setting the default mounter explicitly via --volumemounter command-line argument.
# mounter: kernel # mounter: kernel
reclaimPolicy: Delete reclaimPolicy: Delete