@kubevirt-ui/kubevirt-api
    Preparing search index...

    Interface V1PersistentVolumeClaimInfo

    PersistentVolumeClaimInfo contains the relavant information virt-handler needs cached about a PVC

    interface V1PersistentVolumeClaimInfo {
        accessModes?: V1PersistentVolumeClaimInfoAccessModesEnum[];
        capacity?: Record<string, K8sIoApimachineryPkgApiResourceQuantity>;
        claimName?: string;
        filesystemOverhead?: string;
        preallocated?: boolean;
        requests?: Record<string, K8sIoApimachineryPkgApiResourceQuantity>;
        volumeMode?: V1PersistentVolumeClaimInfoVolumeModeEnum;
    }
    Index

    Properties

    AccessModes contains the desired access modes the volume should have. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1

    capacity?: Record<string, K8sIoApimachineryPkgApiResourceQuantity>

    Capacity represents the capacity set on the corresponding PVC status

    claimName?: string

    ClaimName is the name of the PVC

    filesystemOverhead?: string

    Percentage of filesystem's size to be reserved when resizing the PVC

    preallocated?: boolean

    Preallocated indicates if the PVC's storage is preallocated or not

    requests?: Record<string, K8sIoApimachineryPkgApiResourceQuantity>

    Requests represents the resources requested by the corresponding PVC spec

    VolumeMode defines what type of volume is required by the claim. Value of Filesystem is implied when not included in claim spec.

    Possible enum values:

    • "Block" means the volume will not be formatted with a filesystem and will remain a raw block device.
    • "Filesystem" means the volume will be or is formatted with a filesystem.
    • "FromStorageProfile" means the volume mode will be auto selected by CDI according to a matching StorageProfile