2019-02-07 09:59:26 +00:00
|
|
|
---
|
2018-07-18 14:49:15 +00:00
|
|
|
apiVersion: storage.k8s.io/v1
|
|
|
|
kind: StorageClass
|
|
|
|
metadata:
|
2019-05-07 14:49:45 +00:00
|
|
|
name: csi-rbd-sc
|
2019-03-13 05:09:58 +00:00
|
|
|
provisioner: rbd.csi.ceph.com
|
2020-01-24 16:26:56 +00:00
|
|
|
# If topology based provisioning is desired, delayed provisioning of
|
|
|
|
# PV is required and is enabled using the following attribute
|
|
|
|
# For further information read TODO<doc>
|
|
|
|
# volumeBindingMode: WaitForFirstConsumer
|
2018-07-18 14:49:15 +00:00
|
|
|
parameters:
|
2020-09-23 17:02:11 +00:00
|
|
|
# (required) String representing a Ceph cluster to provision storage from.
|
2019-03-13 13:46:56 +00:00
|
|
|
# Should be unique across all Ceph clusters in use for provisioning,
|
2019-03-12 15:57:36 +00:00
|
|
|
# cannot be greater than 36 bytes in length, and should remain immutable for
|
|
|
|
# the lifetime of the StorageClass in use.
|
2020-06-10 06:23:03 +00:00
|
|
|
# Ensure to create an entry in the configmap named ceph-csi-config, based on
|
2019-04-22 21:35:39 +00:00
|
|
|
# csi-config-map-sample.yaml, to accompany the string chosen to
|
|
|
|
# represent the Ceph cluster in clusterID below
|
|
|
|
clusterID: <cluster-id>
|
2020-09-23 08:29:17 +00:00
|
|
|
|
|
|
|
# (optional) If you want to use erasure coded pool with RBD, you need to
|
|
|
|
# create two pools. one erasure coded and one replicated.
|
2019-09-10 09:56:08 +00:00
|
|
|
# You need to specify the replicated pool here in the `pool` parameter, it is
|
|
|
|
# used for the metadata of the images.
|
|
|
|
# The erasure coded pool must be set as the `dataPool` parameter below.
|
2020-09-23 08:29:17 +00:00
|
|
|
# dataPool: <ec-data-pool>
|
|
|
|
|
|
|
|
# (required) Ceph pool into which the RBD image shall be created
|
|
|
|
# eg: pool: rbdpool
|
|
|
|
pool: <rbd-pool-name>
|
2018-07-18 14:49:15 +00:00
|
|
|
|
2020-11-09 09:07:47 +00:00
|
|
|
# Set thickProvision to true if you want RBD images to be fully allocated on
|
|
|
|
# creation (thin provisioning is the default).
|
|
|
|
thickProvision: "false"
|
2020-09-23 17:02:11 +00:00
|
|
|
# (required) RBD image features, CSI creates image with image-format 2
|
2021-03-11 06:28:48 +00:00
|
|
|
# CSI RBD currently supports `layering`, `journaling`, `exclusive-lock`
|
|
|
|
# features. If `journaling` is enabled, must enable `exclusive-lock` too.
|
|
|
|
# imageFeatures: layering,journaling,exclusive-lock
|
2019-02-07 09:59:26 +00:00
|
|
|
imageFeatures: layering
|
2018-08-09 13:07:00 +00:00
|
|
|
|
2020-09-23 17:02:11 +00:00
|
|
|
# (optional) mapOptions is a comma-separated list of map options.
|
2020-09-08 05:23:28 +00:00
|
|
|
# For krbd options refer
|
|
|
|
# https://docs.ceph.com/docs/master/man/8/rbd/#kernel-rbd-krbd-options
|
|
|
|
# For nbd options refer
|
|
|
|
# https://docs.ceph.com/docs/master/man/8/rbd-nbd/#options
|
|
|
|
# mapOptions: lock_on_read,queue_depth=1024
|
|
|
|
|
2020-09-23 17:02:11 +00:00
|
|
|
# (optional) unmapOptions is a comma-separated list of unmap options.
|
2020-09-08 05:23:28 +00:00
|
|
|
# For krbd options refer
|
|
|
|
# https://docs.ceph.com/docs/master/man/8/rbd/#kernel-rbd-krbd-options
|
|
|
|
# For nbd options refer
|
|
|
|
# https://docs.ceph.com/docs/master/man/8/rbd-nbd/#options
|
|
|
|
# unmapOptions: force
|
|
|
|
|
2019-06-01 21:26:42 +00:00
|
|
|
# The secrets have to contain Ceph credentials with required access
|
|
|
|
# to the 'pool'.
|
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
|
2019-11-27 12:16:11 +00:00
|
|
|
csi.storage.k8s.io/controller-expand-secret-name: csi-rbd-secret
|
|
|
|
csi.storage.k8s.io/controller-expand-secret-namespace: default
|
2019-07-03 10:02:36 +00:00
|
|
|
csi.storage.k8s.io/node-stage-secret-name: csi-rbd-secret
|
|
|
|
csi.storage.k8s.io/node-stage-secret-namespace: default
|
2020-09-23 17:02:11 +00:00
|
|
|
|
|
|
|
# (optional) Specify the filesystem type of the volume. If not specified,
|
2019-08-13 10:55:52 +00:00
|
|
|
# csi-provisioner will set default as `ext4`.
|
2019-09-24 09:06:50 +00:00
|
|
|
csi.storage.k8s.io/fstype: ext4
|
2020-09-23 17:02:11 +00:00
|
|
|
|
|
|
|
# (optional) uncomment the following to use rbd-nbd as mounter
|
|
|
|
# on supported nodes
|
2019-02-07 09:59:26 +00:00
|
|
|
# mounter: rbd-nbd
|
2019-12-13 11:41:32 +00:00
|
|
|
|
2020-09-23 17:02:11 +00:00
|
|
|
# (optional) Prefix to use for naming RBD images.
|
2020-05-22 05:08:55 +00:00
|
|
|
# If omitted, defaults to "csi-vol-".
|
|
|
|
# volumeNamePrefix: "foo-bar-"
|
|
|
|
|
2020-09-23 17:02:11 +00:00
|
|
|
# (optional) Instruct the plugin it has to encrypt the volume
|
examples: rbd/storageclass.yaml causes Python excetion with yamllint
While running the 'make test' target and have 'yamllint' available, the
test fails with the following exception:
yamllint -s -d {extends: default, rules: {line-length: {allow-non-breakable-inline-mappings: true}},ignore: charts/*/templates/*.yaml} ./examples/rbd/storageclass.yaml
Traceback (most recent call last):
File "/usr/local/bin/yamllint", line 11, in <module>
sys.exit(run())
File "/usr/local/lib/python3.6/site-packages/yamllint/cli.py", line 181, in run
problems = linter.run(f, conf, filepath)
File "/usr/local/lib/python3.6/site-packages/yamllint/linter.py", line 237, in run
content = input.read()
File "/usr/lib64/python3.6/encodings/ascii.py", line 26, in decode
return codecs.ascii_decode(input, self.errors)[0]
UnicodeDecodeError: 'ascii' codec can't decode byte 0xe2 in position 1947: ordinal not in range(128)
The quotes used in the comments seem to be non-ascii characters.
Replacing these with standard " makes the test pass again.
This problem occurred while running tests in a container based on the
Ceph image (CentOS-7) with Python 3. Travis CI might still use Python 2
for yamllint, and hide the problem.
Signed-off-by: Niels de Vos <ndevos@redhat.com>
2020-03-24 07:48:27 +00:00
|
|
|
# By default it is disabled. Valid values are "true" or "false".
|
|
|
|
# A string is expected here, i.e. "true", not true.
|
2019-12-13 11:41:32 +00:00
|
|
|
# encrypted: "true"
|
2020-01-29 11:44:45 +00:00
|
|
|
|
2020-09-23 17:02:11 +00:00
|
|
|
# (optional) Use external key management system for encryption passphrases by
|
|
|
|
# specifying a unique ID matching KMS ConfigMap. The ID is only used for
|
|
|
|
# correlation to configmap entry.
|
2020-01-29 11:44:45 +00:00
|
|
|
# encryptionKMSID: <kms-config-id>
|
2020-01-24 16:26:56 +00:00
|
|
|
|
|
|
|
# Add topology constrained pools configuration, if topology based pools
|
|
|
|
# are setup, and topology constrained provisioning is required.
|
|
|
|
# For further information read TODO<doc>
|
|
|
|
# topologyConstrainedPools: |
|
|
|
|
# [{"poolName":"pool0",
|
2020-04-06 20:19:13 +00:00
|
|
|
# "dataPool":"ec-pool0" # optional, erasure-coded pool for data
|
|
|
|
# "domainSegments":[
|
|
|
|
# {"domainLabel":"region","value":"east"},
|
|
|
|
# {"domainLabel":"zone","value":"zone1"}]},
|
2020-01-24 16:26:56 +00:00
|
|
|
# {"poolName":"pool1",
|
2020-04-06 20:19:13 +00:00
|
|
|
# "dataPool":"ec-pool1" # optional, erasure-coded pool for data
|
|
|
|
# "domainSegments":[
|
|
|
|
# {"domainLabel":"region","value":"east"},
|
|
|
|
# {"domainLabel":"zone","value":"zone2"}]},
|
2020-01-24 16:26:56 +00:00
|
|
|
# {"poolName":"pool2",
|
2020-04-06 20:19:13 +00:00
|
|
|
# "dataPool":"ec-pool2" # optional, erasure-coded pool for data
|
|
|
|
# "domainSegments":[
|
|
|
|
# {"domainLabel":"region","value":"west"},
|
|
|
|
# {"domainLabel":"zone","value":"zone1"}]}
|
|
|
|
# ]
|
2020-01-24 16:26:56 +00:00
|
|
|
|
2018-07-18 14:49:15 +00:00
|
|
|
reclaimPolicy: Delete
|
2019-11-27 12:16:11 +00:00
|
|
|
allowVolumeExpansion: true
|
2019-07-03 11:45:23 +00:00
|
|
|
mountOptions:
|
|
|
|
- discard
|