mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-09 16:00:22 +00:00
3081eabba5
A minimal documentation on how to use a rados namespace with rbd. Signed-off-by: Mehdy Khoshnoody <mehdy.khoshnoody@gmail.com>
44 lines
1.6 KiB
YAML
44 lines
1.6 KiB
YAML
---
|
|
# This is a sample configmap that helps define a Ceph cluster configuration
|
|
# as required by the CSI plugins.
|
|
apiVersion: v1
|
|
kind: ConfigMap
|
|
# The <cluster-id> is used by the CSI plugin to uniquely identify and use a
|
|
# Ceph cluster, the value MUST match the value provided as `clusterID` in the
|
|
# StorageClass
|
|
# The <MONValue#> fields are the various monitor addresses for the Ceph cluster
|
|
# identified by the <cluster-id>
|
|
# If a CSI plugin is using more than one Ceph cluster, repeat the section for
|
|
# each such cluster in use.
|
|
# To add more clusters or edit MON addresses in an existing configmap, use
|
|
# the `kubectl replace` command.
|
|
# The <rados-namespace> is optional and represents a radosNamespace in the pool.
|
|
# If any given all the of the rbd images, snapshots and other metadata
|
|
# will be store within the radosNamespace.
|
|
# NOTE: The given radosNamespace must already exists in the pool.
|
|
# NOTE: Make sure you don't add radosNamespace option to a currently in use
|
|
# configuration as it will cause issues.
|
|
# The field "cephFS.subvolumeGroup" is optional and defaults to "csi".
|
|
# NOTE: Changes to the configmap is automatically updated in the running pods,
|
|
# thus restarting existing pods using the configmap is NOT required on edits
|
|
# to the configmap.
|
|
data:
|
|
config.json: |-
|
|
[
|
|
{
|
|
"clusterID": "<cluster-id>",
|
|
"radosNamespace": "<rados-namespace>",
|
|
"monitors": [
|
|
"<MONValue1>",
|
|
"<MONValue2>",
|
|
...
|
|
"<MONValueN>"
|
|
],
|
|
"cephFS": {
|
|
"subvolumeGroup": "<subvolumegroup for cephfs volumes>"
|
|
}
|
|
}
|
|
]
|
|
metadata:
|
|
name: ceph-csi-config
|