mirror of
https://github.com/ceph/ceph-csi.git
synced 2025-06-14 02:43:36 +00:00
e2e: rename rbd file name for external test
renamed rbd file name to match other file names for external test Signed-off-by: Madhu Rajanna <madhupr007@gmail.com>
This commit is contained in:
committed by
mergify[bot]
parent
5aec13d7e6
commit
1494f9bf95
72
scripts/k8s-storage/driver-rbd.yaml
Normal file
72
scripts/k8s-storage/driver-rbd.yaml
Normal file
@ -0,0 +1,72 @@
|
||||
---
|
||||
ShortName: cephcsi-rbd-rwo-test
|
||||
StorageClass:
|
||||
FromExistingClassName: k8s-storage-e2e-rbd-rwo
|
||||
# FromFile: sc-rbd.yaml
|
||||
|
||||
SnapshotClass:
|
||||
# Must be set to enable snapshotting tests
|
||||
FromExistingClassName: k8s-storage-e2e-rbd
|
||||
|
||||
DriverInfo:
|
||||
# Internal name of the driver, display name in the test case and test objects
|
||||
Name: rbd-rwo.csi.ceph.com
|
||||
|
||||
# The range of disk size supported by this driver
|
||||
SupportedSizeRange:
|
||||
Min: 1Gi
|
||||
Max: 16Ti
|
||||
|
||||
# Map of strings for supported FS types
|
||||
SupportedFsType:
|
||||
ext4: {}
|
||||
xfs: {}
|
||||
|
||||
# Map of strings for supported mount options
|
||||
SupportedMountOption:
|
||||
rw: {}
|
||||
|
||||
# Map of strings for required mount options
|
||||
RequiredMountOption:
|
||||
rw: {}
|
||||
|
||||
# Optional list of access modes required for provisioning. Default is RWO
|
||||
# RequiredAccessModes:
|
||||
|
||||
# Map that represents the capabilities the driver supports
|
||||
Capabilities:
|
||||
# Data is persisted across pod restarts
|
||||
persistence: true
|
||||
|
||||
# Volume ownership via fsGroup
|
||||
fsGroup: false
|
||||
|
||||
# Raw block mode
|
||||
block: true
|
||||
|
||||
# Exec a file in the volume
|
||||
exec: true
|
||||
|
||||
# Support for volume limits
|
||||
volumeLimits: false
|
||||
|
||||
# Support for volume expansion in controllers
|
||||
controllerExpansion: true
|
||||
|
||||
# Support for volume expansion in nodes
|
||||
nodeExpansion: true
|
||||
|
||||
# Support volume that can run on single node only (like hostpath)
|
||||
singleNodeVolume: false
|
||||
|
||||
# Support ReadWriteMany access modes
|
||||
RWX: false
|
||||
|
||||
# Support topology
|
||||
topology: false
|
||||
|
||||
# Support populate data from snapshot
|
||||
snapshotDataSource: true
|
||||
|
||||
# Support populated data from PVC
|
||||
pvcDataSource: true
|
Reference in New Issue
Block a user