mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-29 17:50:23 +00:00
17 lines
385 B
YAML
17 lines
385 B
YAML
apiVersion: storage.k8s.io/v1
|
|
kind: StorageClass
|
|
metadata:
|
|
name: csi-cephfs
|
|
provisioner: csi-cephfsplugin
|
|
parameters:
|
|
# The driver can use either ceph-fuse (fuse) or ceph kernel client (kernel)
|
|
mounter: fuse
|
|
|
|
monitors: mon1:port,mon2:port
|
|
rootPath: /
|
|
user: admin
|
|
|
|
csiProvisionerSecretName: csi-cephfs-secret
|
|
csiProvisionerSecretNameSpace: default
|
|
reclaimPolicy: Delete
|