Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for AssignedPodAdd (0.11 sec)

  1. pkg/scheduler/internal/queue/events.go

    	// PodUpdate is the event when a pod is updated
    	PodUpdate = "PodUpdate"
    )
    
    var (
    	// AssignedPodAdd is the event when a pod is added that causes pods with matching affinity terms
    	// to be more schedulable.
    	AssignedPodAdd = framework.ClusterEvent{Resource: framework.Pod, ActionType: framework.Add, Label: "AssignedPodAdd"}
    	// NodeAdd is the event when a new node is added to the cluster.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  2. pkg/scheduler/internal/queue/scheduling_queue_test.go

    				// This Pod won't be requeued again.
    				{podPopped: pod3},
    				{eventHappens: &AssignedPodAdd},
    				{podEnqueued: newQueuedPodInfoForLookup(pod2)},
    			},
    			wantBackoffQPodNames: []string{"targetpod2"},
    			wantInFlightPods:     []*v1.Pod{pod, pod3},
    			wantInFlightEvents:   []interface{}{pod, PvAdd, NodeAdd, pod3, AssignedPodAdd},
    			queueingHintMap: QueueingHintMapPerProfile{
    				"": {
    					PvAdd: {
    						{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  3. pkg/scheduler/internal/queue/scheduling_queue.go

    func (p *PriorityQueue) AssignedPodAdded(logger klog.Logger, pod *v1.Pod) {
    	p.lock.Lock()
    	p.movePodsToActiveOrBackoffQueue(logger, p.getUnschedulablePodsWithMatchingAffinityTerm(logger, pod), AssignedPodAdd, nil, pod)
    	p.lock.Unlock()
    }
    
    // isPodResourcesResizedDown returns true if a pod CPU and/or memory resize request has been
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
Back to top