Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for IsExtendedResourceName (0.39 sec)

  1. pkg/scheduler/framework/plugins/noderesources/fit.go

    		})
    	}
    
    	for rName, rQuant := range podRequest.ScalarResources {
    		// Skip in case request quantity is zero
    		if rQuant == 0 {
    			continue
    		}
    
    		if v1helper.IsExtendedResourceName(rName) {
    			// If this resource is one of the extended resources that should be ignored, we will skip checking it.
    			// rName is guaranteed to have a slash due to API validation.
    			var rNamePrefix string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  2. pkg/kubelet/nodestatus/setters.go

    		}
    		// Remove extended resources from allocatable that are no longer
    		// present in capacity.
    		for k := range node.Status.Allocatable {
    			_, found := node.Status.Capacity[k]
    			if !found && v1helper.IsExtendedResourceName(k) {
    				delete(node.Status.Allocatable, k)
    			}
    		}
    		allocatableReservation := nodeAllocatableReservationFunc()
    		for k, v := range node.Status.Capacity {
    			value := v.DeepCopy()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 12:12:04 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_node_status.go

    	if kl.containerManager.ShouldResetExtendedResourceCapacity() {
    		for k := range node.Status.Capacity {
    			if v1helper.IsExtendedResourceName(k) {
    				klog.InfoS("Zero out resource capacity in existing node", "resourceName", k, "node", klog.KObj(node))
    				node.Status.Capacity[k] = *resource.NewQuantity(int64(0), resource.DecimalSI)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  4. pkg/apis/core/validation/validation.go

    			return append(allErrs, field.Invalid(fldPath, value, "must be a standard resource for containers"))
    		}
    	} else if !helper.IsNativeResource(value) {
    		if !helper.IsExtendedResourceName(value) {
    			return append(allErrs, field.Invalid(fldPath, value, "doesn't follow extended resource name standard"))
    		}
    	}
    	return allErrs
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
Back to top