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

    Interface V1ResourceRequirements

    interface V1ResourceRequirements {
        limits?: Record<string, K8sIoApimachineryPkgApiResourceQuantity>;
        overcommitGuestOverhead?: boolean;
        requests?: Record<string, K8sIoApimachineryPkgApiResourceQuantity>;
    }
    Index

    Properties

    Limits describes the maximum amount of compute resources allowed. Valid resource keys are "memory" and "cpu".

    overcommitGuestOverhead?: boolean

    Don't ask the scheduler to take the guest-management overhead into account. Instead put the overhead only into the container's memory limit. This can lead to crashes if all memory is in use on a node. Defaults to false.

    requests?: Record<string, K8sIoApimachineryPkgApiResourceQuantity>

    Requests is a description of the initial vmi resources. Valid resource keys are "memory" and "cpu".