Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 92 for AllocatedResources (0.25 sec)

  1. pkg/kubelet/status/status_manager.go

    	// the provided podUIDs.
    	RemoveOrphanedStatuses(podUIDs map[types.UID]bool)
    
    	// GetContainerResourceAllocation returns checkpointed AllocatedResources value for the container
    	GetContainerResourceAllocation(podUID string, containerName string) (v1.ResourceList, bool)
    
    	// GetPodResizeStatus returns checkpointed PodStatus.Resize value
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 44.3K bytes
    - Viewed (0)
  2. pkg/apis/core/helper/helpers.go

    			return true
    		}
    	}
    	return false
    }
    
    func ClaimContainsAllocatedResources(pvc *core.PersistentVolumeClaim) bool {
    	if pvc == nil {
    		return false
    	}
    
    	if pvc.Status.AllocatedResources != nil {
    		return true
    	}
    	return false
    }
    
    func ClaimContainsAllocatedResourceStatus(pvc *core.PersistentVolumeClaim) bool {
    	if pvc == nil {
    		return false
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Oct 28 07:31:28 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/cpumanager/policy_static.go

    		return 0
    	}
    	cpuQuantity := container.Resources.Requests[v1.ResourceCPU]
    	// In-place pod resize feature makes Container.Resources field mutable for CPU & memory.
    	// AllocatedResources holds the value of Container.Resources.Requests when the pod was admitted.
    	// We should return this value because this is what kubelet agreed to allocate for the container
    	// and the value configured with runtime.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 06 13:16:15 UTC 2023
    - 28.8K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_test.go

    		if tc.existingPodAllocation != nil {
    			// when kubelet restarts, AllocatedResources has already existed before adding pod
    			err := kubelet.statusManager.SetPodAllocation(tc.existingPodAllocation)
    			if err != nil {
    				t.Fatalf("failed to set pod allocation: %v", err)
    			}
    		}
    		kubelet.HandlePodAdditions([]*v1.Pod{tc.pod})
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/v1.29.0/apps.v1.StatefulSet.yaml

          volumeName: volumeNameValue
        status:
          accessModes:
          - accessModesValue
          allocatedResourceStatuses:
            allocatedResourceStatusesKey: allocatedResourceStatusesValue
          allocatedResources:
            allocatedResourcesKey: "0"
          capacity:
            capacityKey: "0"
          conditions:
          - lastProbeTime: "2003-01-01T01:01:01Z"
            lastTransitionTime: "2004-01-01T01:01:01Z"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 37.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/v1.30.0/apps.v1beta1.StatefulSet.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 58.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/HEAD/apps.v1beta1.StatefulSet.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 58.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/HEAD/apps.v1.StatefulSet.yaml

          volumeName: volumeNameValue
        status:
          accessModes:
          - accessModesValue
          allocatedResourceStatuses:
            allocatedResourceStatusesKey: allocatedResourceStatusesValue
          allocatedResources:
            allocatedResourcesKey: "0"
          capacity:
            capacityKey: "0"
          conditions:
          - lastProbeTime: "2003-01-01T01:01:01Z"
            lastTransitionTime: "2004-01-01T01:01:01Z"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/v1.29.0/apps.v1beta2.StatefulSet.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 57.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/v1.30.0/apps.v1.StatefulSet.yaml

          volumeName: volumeNameValue
        status:
          accessModes:
          - accessModesValue
          allocatedResourceStatuses:
            allocatedResourceStatusesKey: allocatedResourceStatusesValue
          allocatedResources:
            allocatedResourcesKey: "0"
          capacity:
            capacityKey: "0"
          conditions:
          - lastProbeTime: "2003-01-01T01:01:01Z"
            lastTransitionTime: "2004-01-01T01:01:01Z"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 37.6K bytes
    - Viewed (0)
Back to top