Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for RunPostFilterPlugins (0.41 sec)

  1. pkg/scheduler/framework/interface.go

    	// RunPostFilterPlugins runs the set of configured PostFilter plugins.
    	// PostFilter plugins can either be informational, in which case should be configured
    	// to execute first and return Unschedulable status, or ones that try to change the
    	// cluster state to make the pod potentially schedulable in a future scheduling cycle.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/runtime/framework.go

    	return status
    }
    
    // RunPostFilterPlugins runs the set of configured PostFilter plugins until the first
    // Success, Error or UnschedulableAndUnresolvable is met; otherwise continues to execute all plugins.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  3. pkg/scheduler/schedule_one.go

    		}
    
    		// Run PostFilter plugins to attempt to make the pod schedulable in a future scheduling cycle.
    		result, status := fwk.RunPostFilterPlugins(ctx, state, pod, fitError.Diagnosis.NodeToStatusMap)
    		msg := status.Message()
    		fitError.Diagnosis.PostFilterMsg = msg
    		if status.Code() == framework.Error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 13:28:08 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/runtime/framework_test.go

    			defer cancel()
    			f, err := newFrameworkWithQueueSortAndBind(ctx, registry, profile)
    			if err != nil {
    				t.Fatalf("fail to create framework: %s", err)
    			}
    			_, gotStatus := f.RunPostFilterPlugins(ctx, nil, pod, nil)
    			if !reflect.DeepEqual(gotStatus, tt.wantStatus) {
    				t.Errorf("Unexpected status. got: %v, want: %v", gotStatus, tt.wantStatus)
    			}
    		})
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 103K bytes
    - Viewed (0)
Back to top