2019-02-07 09:59:26 +00:00
|
|
|
---
|
2018-07-18 14:49:15 +00:00
|
|
|
apiVersion: storage.k8s.io/v1
|
|
|
|
kind: StorageClass
|
|
|
|
metadata:
|
|
|
|
name: csi-rbd
|
2019-03-13 05:09:58 +00:00
|
|
|
provisioner: rbd.csi.ceph.com
|
2018-07-18 14:49:15 +00:00
|
|
|
parameters:
|
2019-02-07 09:59:26 +00:00
|
|
|
# Comma separated list of Ceph monitors
|
|
|
|
# if using FQDN, make sure csi plugin's dns policy is appropriate.
|
|
|
|
monitors: mon1:port,mon2:port,...
|
2019-03-02 17:29:52 +00:00
|
|
|
# OR,
|
2019-03-12 15:57:36 +00:00
|
|
|
# String representing a Ceph cluster to provision storage from.
|
|
|
|
# Should be unique unique across all Ceph clusters in use for provisioning,
|
|
|
|
# cannot be greater than 36 bytes in length, and should remain immutable for
|
|
|
|
# the lifetime of the StorageClass in use.
|
|
|
|
# If using clusterID, ensure to create a secret, as in
|
|
|
|
# template-ceph-cluster-ID-secret.yaml, to accompany the string chosen to
|
|
|
|
# represent the Ceph cluster in clusterID
|
|
|
|
# clusterID: <cluster-id>
|
2019-03-02 17:29:52 +00:00
|
|
|
# OR,
|
2019-02-07 09:59:26 +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-09-21 14:38:50 +00:00
|
|
|
|
2019-02-07 09:59:26 +00:00
|
|
|
# Ceph pool into which the RBD image shall be created
|
|
|
|
pool: rbd
|
2018-07-18 14:49:15 +00:00
|
|
|
|
2019-02-07 09:59:26 +00:00
|
|
|
# RBD image format. Defaults to "2".
|
|
|
|
imageFormat: "2"
|
2018-07-18 14:49:15 +00:00
|
|
|
|
2019-02-07 09:59:26 +00:00
|
|
|
# RBD image features. Available for imageFormat: "2"
|
|
|
|
# CSI RBD currently supports only `layering` feature.
|
|
|
|
imageFeatures: layering
|
2018-08-09 13:07:00 +00:00
|
|
|
|
2019-02-07 09:59:26 +00:00
|
|
|
# The secrets have to contain Ceph admin credentials.
|
2019-03-07 21:03:33 +00:00
|
|
|
# NOTE: If using "clusterID" instead of "monitors" above, the following
|
2019-03-12 15:57:36 +00:00
|
|
|
# secrets MAY be added to the ceph-cluster-<cluster-id> secret and skipped
|
2019-03-07 21:03:33 +00:00
|
|
|
# here
|
2019-02-07 09:59:26 +00:00
|
|
|
csi.storage.k8s.io/provisioner-secret-name: csi-rbd-secret
|
|
|
|
csi.storage.k8s.io/provisioner-secret-namespace: default
|
|
|
|
csi.storage.k8s.io/node-publish-secret-name: csi-rbd-secret
|
|
|
|
csi.storage.k8s.io/node-publish-secret-namespace: default
|
|
|
|
|
|
|
|
# Ceph users for operating RBD
|
2019-03-07 21:03:33 +00:00
|
|
|
# NOTE: If using "clusterID" instead of "monitors" above, the following
|
2019-03-12 15:57:36 +00:00
|
|
|
# IDs MAY be added to the ceph-cluster-<cluster-id> secret and skipped
|
2019-03-07 21:03:33 +00:00
|
|
|
# here
|
2019-02-07 09:59:26 +00:00
|
|
|
adminid: admin
|
|
|
|
userid: kubernetes
|
|
|
|
# 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
|