mirror of
https://github.com/ceph/ceph-csi.git
synced 2025-01-16 17:59:29 +00:00
b9d56323bd
Signed-off-by: Praveen M <m.praveen@ibm.com>
(cherry picked from commit c2fff75610
)
24 lines
794 B
YAML
24 lines
794 B
YAML
---
|
|
apiVersion: groupsnapshot.storage.k8s.io/v1beta1
|
|
kind: VolumeGroupSnapshotClass
|
|
metadata:
|
|
name: csi-rbdplugin-groupsnapclass
|
|
driver: rbd.csi.ceph.com
|
|
parameters:
|
|
# String representing a Ceph cluster to provision storage from.
|
|
# Should be 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
|
|
clusterID: <cluster-id>
|
|
|
|
# eg: pool: rbdpool
|
|
pool: <rbd-pool-name>
|
|
|
|
# (optional) Prefix to use for naming RBD groups.
|
|
# If omitted, defaults to "csi-vol-group-".
|
|
# volumeGroupNamePrefix: "foo-bar-"
|
|
|
|
csi.storage.k8s.io/group-snapshotter-secret-name: csi-rbd-secret
|
|
csi.storage.k8s.io/group-snapshotter-secret-namespace: default
|
|
deletionPolicy: Delete
|