Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ErrReasonBindConflict (0.13 sec)

  1. pkg/scheduler/framework/plugins/volumebinding/binder.go

    func (reasons ConflictReasons) Swap(i, j int)      { reasons[i], reasons[j] = reasons[j], reasons[i] }
    
    const (
    	// ErrReasonBindConflict is used for VolumeBindingNoMatch predicate error.
    	ErrReasonBindConflict ConflictReason = "node(s) didn't find available persistent volumes to bind"
    	// ErrReasonNodeConflict is used for VolumeNodeAffinityConflict predicate error.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 14:55:34 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/preemption/preemption_test.go

    				"node2": framework.NewStatus(framework.UnschedulableAndUnresolvable, string(volumebinding.ErrReasonNodeConflict)),
    				"node3": framework.NewStatus(framework.UnschedulableAndUnresolvable, string(volumebinding.ErrReasonBindConflict)),
    				"node4": framework.NewStatus(framework.Unschedulable, "Unschedulable"),
    			},
    			expected: sets.New("node4"),
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 18.7K bytes
    - Viewed (0)
Back to top