|
| 1 | +--- |
| 2 | +ShortName: cephcsi-nvmeof-test |
| 3 | +Timeouts: |
| 4 | + ClaimProvision: 10m |
| 5 | + |
| 6 | +StorageClass: |
| 7 | + FromExistingClassName: k8s-storage-e2e-nvmeof |
| 8 | + # FromFile: sc-nvmeof.yaml |
| 9 | + |
| 10 | +SnapshotClass: |
| 11 | + # Must be set to enable snapshotting tests |
| 12 | + FromExistingClassName: k8s-storage-e2e-nvmeof |
| 13 | + |
| 14 | +DriverInfo: |
| 15 | + # Internal name of the driver, display name in the test case and test objects |
| 16 | + Name: nvmeof.csi.ceph.com |
| 17 | + |
| 18 | + # The range of disk size supported by this driver |
| 19 | + SupportedSizeRange: |
| 20 | + Min: 1Gi |
| 21 | + Max: 16Ti |
| 22 | + |
| 23 | + # Map of strings for supported FS types |
| 24 | + SupportedFsType: |
| 25 | + ext4: {} |
| 26 | + xfs: {} |
| 27 | + |
| 28 | + # Map of strings for supported mount options |
| 29 | + SupportedMountOption: |
| 30 | + rw: {} |
| 31 | + |
| 32 | + # Map of strings for required mount options |
| 33 | + RequiredMountOption: |
| 34 | + rw: {} |
| 35 | + |
| 36 | + # Optional list of access modes required for provisioning. Default is RWO |
| 37 | + # RequiredAccessModes: |
| 38 | + |
| 39 | + # Map that represents the capabilities the driver supports |
| 40 | + Capabilities: |
| 41 | + # Data is persisted across pod restarts |
| 42 | + persistence: true |
| 43 | + |
| 44 | + # Volume ownership via fsGroup |
| 45 | + fsGroup: false |
| 46 | + |
| 47 | + # Raw block mode |
| 48 | + block: true |
| 49 | + |
| 50 | + # Exec a file in the volume |
| 51 | + exec: true |
| 52 | + |
| 53 | + # Support for volume limits |
| 54 | + volumeLimits: false |
| 55 | + |
| 56 | + # Support for volume expansion in controllers |
| 57 | + controllerExpansion: true |
| 58 | + |
| 59 | + # Support for volume expansion in nodes |
| 60 | + nodeExpansion: true |
| 61 | + |
| 62 | + # supports offline volume expansion |
| 63 | + offlineExpansion: false |
| 64 | + |
| 65 | + # Support volume that can run on single node only (like hostpath) |
| 66 | + singleNodeVolume: false |
| 67 | + |
| 68 | + # Support ReadWriteMany access modes (block mode only) |
| 69 | + RWX: false |
| 70 | + |
| 71 | + # Support topology |
| 72 | + topology: false |
| 73 | + |
| 74 | + # Support populate data from snapshot |
| 75 | + snapshotDataSource: true |
| 76 | + |
| 77 | + # Support populated data from PVC |
| 78 | + pvcDataSource: true |
| 79 | + |
| 80 | + # multiple pods on a node can use the same volume concurrently |
| 81 | + multipods: true |
| 82 | + |
| 83 | + # support ReadWriteOncePod access mode |
| 84 | + readWriteOncePod: true |
| 85 | + |
| 86 | + # supports ROX AccessMode in PVC for PVC with Snapshot DataSource |
| 87 | + capReadOnlyMany: true |
0 commit comments