Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for admitPV (0.19 sec)

  1. pkg/kubelet/kubelet.go

    	attrs.OtherPods = kl.GetActivePods()
    
    	for _, handler := range kl.softAdmitHandlers {
    		if result := handler.Admit(attrs); !result.Admit {
    			return result
    		}
    	}
    
    	return lifecycle.PodAdmitResult{Admit: true}
    }
    
    // syncLoop is the main loop for processing changes. It watches for changes from
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_test.go

    	// list of pods to reject.
    	podsToReject []*v1.Pod
    }
    
    // Admit rejects all pods in the podsToReject list with a matching UID.
    func (a *testPodAdmitHandler) Admit(attrs *lifecycle.PodAdmitAttributes) lifecycle.PodAdmitResult {
    	for _, podToReject := range a.podsToReject {
    		if podToReject.UID == attrs.Pod.UID {
    			return lifecycle.PodAdmitResult{Admit: false, Reason: "Rejected", Message: "Pod is rejected"}
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/noderesources/fit_test.go

    			nodeInfo: framework.NewNodeInfo(
    				newResourcePod(framework.Resource{MilliCPU: 0, Memory: 0, ScalarResources: map[v1.ResourceName]int64{extendedResourceA: 2}})),
    			name:                      "extended resource allocatable admits multiple init containers",
    			wantInsufficientResources: []InsufficientResource{},
    		},
    		{
    			pod: newResourceInitPod(newResourcePod(framework.Resource{}),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 57.4K bytes
    - Viewed (0)
Back to top