Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ForceActivate (0.24 sec)

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

    	// BackoffComplete is the event when a pod finishes backoff.
    	BackoffComplete = "BackoffComplete"
    	// ForceActivate is the event when a pod is moved from unschedulablePods/backoffQ
    	// to activeQ. Usually it's triggered by plugin implementations.
    	ForceActivate = "ForceActivate"
    	// PodUpdate is the event when a pod is updated
    	PodUpdate = "PodUpdate"
    )
    
    var (
    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.go

    	if added, _ := p.addToActiveQ(logger, pInfo); !added {
    		return false
    	}
    	p.unschedulablePods.delete(pInfo.Pod, gated)
    	p.podBackoffQ.Delete(pInfo)
    	metrics.SchedulerQueueIncomingPods.WithLabelValues("active", ForceActivate).Inc()
    	p.addNominatedPodUnlocked(logger, pInfo.PodInfo, nil)
    	return true
    }
    
    // isPodBackingoff returns true if a pod is still waiting for its backoff timer.
    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