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

    Interface V1ResourceRequirementsWithoutClaims

    ResourceRequirementsWithoutClaims describes the compute resource requirements. This struct was taken from the k8s.ResourceRequirements and cleaned up the Claims field.

    interface V1ResourceRequirementsWithoutClaims {
        limits?: Record<string, K8sIoApimachineryPkgApiResourceQuantity>;
        requests?: Record<string, K8sIoApimachineryPkgApiResourceQuantity>;
    }
    Index

    Properties

    Properties

    Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/

    requests?: Record<string, K8sIoApimachineryPkgApiResourceQuantity>

    Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. Requests cannot exceed Limits. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/