mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-10 00:10:20 +00:00
34 lines
1.2 KiB
YAML
34 lines
1.2 KiB
YAML
|
apiVersion: storage.k8s.io/v1
|
||
|
kind: StorageClass
|
||
|
metadata:
|
||
|
name: csi-cephfs
|
||
|
provisioner: csi-cephfsplugin
|
||
|
parameters:
|
||
|
# Comma separated list of Ceph monitors
|
||
|
monitors: mon1:port,mon2:port,...
|
||
|
|
||
|
# If set to true, a new volume will be created along with a RADOS user - this requires admin access.
|
||
|
# If set to false, it is assumed the volume already exists and the user is expected to provide
|
||
|
# a rootPath to a cephfs volume and user credentials.
|
||
|
provisionVolume: "true"
|
||
|
|
||
|
# Ceph pool into which the volume shall be created
|
||
|
# Required for provisionVolume: "true"
|
||
|
pool: cephfs_data
|
||
|
|
||
|
# Root path of an existing CephFS volume
|
||
|
# Required for provisionVolume: "false"
|
||
|
# rootPath: /absolute/path
|
||
|
|
||
|
# The secrets have to contain user and/or Ceph admin credentials.
|
||
|
csiProvisionerSecretName: csi-cephfs-secret
|
||
|
csiProvisionerSecretNamespace: default
|
||
|
csiNodeStageSecretName: csi-cephfs-secret
|
||
|
csiNodeStageSecretNamespace: default
|
||
|
|
||
|
# (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
|
||
|
# or by setting the default mounter explicitly via --volumemounter command-line argument.
|
||
|
# mounter: kernel
|
||
|
reclaimPolicy: Delete
|