2018-07-18 14:49:15 +00:00
apiVersion : storage.k8s.io/v1
kind : StorageClass
metadata :
name : csi-rbd
2019-04-29 02:54:53 +00:00
# NOTE: provisioner name here should be specified as same as it is declared in the csi-provisioner StatefulSet or it will fail to create PV dynamically.
provisioner : rbd.csi.ceph.com
2018-07-18 14:49:15 +00:00
parameters :
# Comma separated list of Ceph monitors
2018-09-19 14:37:58 +00:00
# if using FQDN, make sure csi plugin's dns policy is appropriate.
2018-07-18 14:49:15 +00:00
monitors : mon1:port,mon2:port,...
2018-09-21 14:38:50 +00:00
# if "monitors" parameter is not set, driver to get monitors from same
# secret as admin/user credentials. "monValueFromSecret" provides the
# key in the secret whose value is the mons
#monValueFromSecret: "monitors"
2018-07-18 14:49:15 +00:00
# Ceph pool into which the RBD image shall be created
pool : rbd
# RBD image format. Defaults to "2".
imageFormat : "2"
# RBD image features. Available for imageFormat: "2". CSI RBD currently supports only `layering` feature.
imageFeatures : layering
# The secrets have to contain Ceph admin credentials.
csiProvisionerSecretName : csi-rbd-secret
csiProvisionerSecretNamespace : default
csiNodePublishSecretName : csi-rbd-secret
csiNodePublishSecretNamespace : default
2018-08-09 13:07:00 +00:00
# Ceph users for operating RBD
adminid : admin
userid : kubernetes
2018-09-18 14:09:12 +00:00
# uncomment the following to use rbd-nbd as mounter on supported nodes
#mounter: rbd-nbd
2018-07-18 14:49:15 +00:00
reclaimPolicy : Delete