SCSIStorageClass
Scope: Cluster
Version: v1alpha1
SCSIStorageClass is a Kubernetes Custom Resource that defines a configuration for a Kubernetes Storage class.
- object
Required value
Selector for choosing SCSIDevice resources to be used for PV provisioning by the CSI driver. Only SCSIDevice objects that satisfy the criteria defined below will be eligible for selection by the CSI driver for this StorageClass.
- array of objects
An array of label selector requirements. Each requirement specifies a key, an operator, and an optional list of values. An SCSIDevice must meet these conditions to be selected.
- string
VolumeCleanup defines the policy for cleaning up the SCSI device when the PersistentVolume is deleted. If ommited, no cleanup will be performed:
Discard
— sends a SCSI TRIM or discard command to the device, marking the blocks as free without necessarily overwriting the data. This option is typically faster but may not securely erase data.RandomFillSinglePass
— overwrites the entire device with random data in a single pass. This option is not recommended for solid-state drives, as it reduces the lifespan of the drive.RandomFillThreePass
— overwrites the device with random data in three separate passes. This option is not recommended for solid-state drives, as it reduces the lifespan of the drive.
Allowed values:
Discard
,RandomFillSinglePass
,RandomFillThreePass