Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ExtractResourceValueByContainerNameAndNodeAllocatable (0.58 sec)

  1. pkg/api/v1/resource/helpers.go

    	if err != nil {
    		return "", err
    	}
    	return ExtractContainerResourceValue(fs, container)
    }
    
    // ExtractResourceValueByContainerNameAndNodeAllocatable extracts the value of a resource
    // by providing container name and node allocatable
    func ExtractResourceValueByContainerNameAndNodeAllocatable(fs *v1.ResourceFieldSelector, pod *v1.Pod, containerName string, nodeAllocatable v1.ResourceList) (string, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 26 13:58:16 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  2. pkg/volume/downwardapi/downwardapi.go

    			nodeAllocatable, err := host.GetNodeAllocatable()
    			if err != nil {
    				errlist = append(errlist, err)
    			} else if values, err := resource.ExtractResourceValueByContainerNameAndNodeAllocatable(fileInfo.ResourceFieldRef, pod, containerName, nodeAllocatable); err != nil {
    				klog.Errorf("Unable to extract field %s: %s", fileInfo.ResourceFieldRef.Resource, err.Error())
    				errlist = append(errlist, err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 10.4K bytes
    - Viewed (0)
Back to top