Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for IsExtendedResourceName (0.45 sec)

  1. pkg/kubelet/cm/devicemanager/plugin/v1beta1/handler.go

    	if !s.isVersionCompatibleWithPlugin(versions...) {
    		return fmt.Errorf("manager version, %s, is not among plugin supported versions %v", api.Version, versions)
    	}
    
    	if !v1helper.IsExtendedResourceName(core.ResourceName(pluginName)) {
    		return fmt.Errorf("invalid name of device plugin socket: %s", fmt.Sprintf(errInvalidResourceName, pluginName))
    	}
    
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 14:21:15 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. pkg/apis/core/v1/helper/helpers.go

    	"k8s.io/kubernetes/pkg/apis/core/helper"
    )
    
    // IsExtendedResourceName returns true if:
    // 1. the resource name is not in the default namespace;
    // 2. resource name does not have "requests." prefix,
    // to avoid confusion with the convention in quota
    // 3. it satisfies the rules in IsQualifiedName() after converted into quota resource name
    func IsExtendedResourceName(name v1.ResourceName) bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 23:03:54 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/devicemanager/plugin/v1beta1/server.go

    		klog.InfoS("Bad registration request from device plugin with resource", "resourceName", r.ResourceName, "err", err)
    		return &api.Empty{}, err
    	}
    
    	if !v1helper.IsExtendedResourceName(core.ResourceName(r.ResourceName)) {
    		err := fmt.Errorf(errInvalidResourceName, r.ResourceName)
    		klog.InfoS("Bad registration request from device plugin", "err", err)
    		return &api.Empty{}, err
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 27 02:10:25 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. pkg/scheduler/apis/config/validation/validation.go

    		validationErrors = append(validationErrors, field.Invalid(path, name, msg))
    	}
    	if len(validationErrors) != 0 {
    		return validationErrors
    	}
    	if !v1helper.IsExtendedResourceName(name) {
    		validationErrors = append(validationErrors, field.Invalid(path, string(name), "is an invalid extended resource name"))
    	}
    	return validationErrors
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 06:27:01 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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