Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for PvAdd (0.39 sec)

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

    	NodeConditionChange = framework.ClusterEvent{Resource: framework.Node, ActionType: framework.UpdateNodeCondition, Label: "NodeConditionChange"}
    	// PvAdd is the event when a persistent volume is added in the cluster.
    	PvAdd = framework.ClusterEvent{Resource: framework.PersistentVolume, ActionType: framework.Add, Label: "PvAdd"}
    	// PvUpdate is the event when a persistent volume is updated in 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

    				{podPopped: pod},
    				// This gets added for the pod.
    				{eventHappens: &PvAdd},
    				// This doesn't get added because no plugin is interested in PvUpdate.
    				{eventHappens: &PvUpdate},
    			},
    			wantInFlightPods:   []*v1.Pod{pod},
    			wantInFlightEvents: []interface{}{pod, PvAdd},
    			queueingHintMap: QueueingHintMapPerProfile{
    				"": {
    					PvAdd: {
    						{
    							PluginName:     "fooPlugin1",
    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/eventhandlers.go

    			); err != nil {
    				return err
    			}
    			handlers = append(handlers, handlerRegistration)
    		case framework.PersistentVolume:
    			// MaxPDVolumeCountPredicate: since it relies on the counts of PV.
    			//
    			// PvAdd: Pods created when there are no PVs available will be stuck in
    			// unschedulable queue. But unbound PVs created for static provisioning and
    			// delay binding storage class are skipped in PV controller dynamic
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:21:04 UTC 2024
    - 24K bytes
    - Viewed (0)
Back to top