Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Filtering (0.1 sec)

  1. pkg/kubelet/kubelet_pods.go

    	// TODO: the logic here does not handle two cases:
    	//   1. If the containers were removed immediately after they died, kubelet
    	//      may fail to generate correct statuses, let alone filtering correctly.
    	//   2. If kubelet restarted before writing the terminated status for a pod
    	//      to the apiserver, it could still restart the terminated pod (even
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  2. pkg/scheduler/schedule_one_test.go

    			}
    			sched.applyDefaultHandlers()
    
    			state := framework.NewCycleState()
    			_, _, err = sched.findNodesThatFitPod(ctx, fwk, state, test.pod)
    			if err != nil {
    				t.Fatalf("error filtering nodes: %+v", err)
    			}
    			fwk.RunPreScorePlugins(ctx, state, test.pod, tf.BuildNodeInfos(test.nodes))
    			list, err := prioritizeNodes(ctx, nil, fwk, state, test.pod, tf.BuildNodeInfos(test.nodes))
    			if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet.go

    		// while the second is used to provide a more timely status update during initialization and runs an one-shot update to the apiserver
    		// once the node becomes ready, then exits afterwards.
    		//
    		// Introduce some small jittering to ensure that over time the requests won't start
    		// accumulating at approximately the same time from the set of nodes due to priority and
    		// fairness effect.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
Back to top