Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for actionType (0.17 sec)

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

    	// NodeLabelChange is the event when node label is changed.
    	NodeLabelChange = framework.ClusterEvent{Resource: framework.Node, ActionType: framework.UpdateNodeLabel, Label: "NodeLabelChange"}
    	// NodeAnnotationChange is the event when node annotation is changed.
    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/framework/plugins/tainttoleration/taint_toleration.go

    func (pl *TaintToleration) EventsToRegister() []framework.ClusterEventWithHint {
    	clusterEventWithHint := []framework.ClusterEventWithHint{
    		{Event: framework.ClusterEvent{Resource: framework.Node, ActionType: framework.Add | framework.Update}, QueueingHintFn: pl.isSchedulableAfterNodeChange},
    	}
    	if !pl.enableSchedulingQueueHint {
    		return clusterEventWithHint
    	}
    	// When the QueueingHint feature is enabled,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/schedulinggates/scheduling_gates.go

    	// https://github.com/kubernetes/kubernetes/pull/122234
    	return []framework.ClusterEventWithHint{
    		// Pods can be more schedulable once it's gates are removed
    		{Event: framework.ClusterEvent{Resource: framework.Pod, ActionType: framework.Update}, QueueingHintFn: pl.isSchedulableAfterPodChange},
    	}
    }
    
    // New initializes a new plugin and returns it.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top