Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ErrReasonNotEnoughSpace (0.17 sec)

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

    		case ErrReasonBindConflict:
    			varNames = append(varNames, "ErrReasonBindConflict")
    		case ErrReasonNodeConflict:
    			varNames = append(varNames, "ErrReasonNodeConflict")
    		case ErrReasonNotEnoughSpace:
    			varNames = append(varNames, "ErrReasonNotEnoughSpace")
    		default:
    			varNames = append(varNames, string(reason))
    		}
    	}
    	return fmt.Sprintf("%v", varNames)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/volumebinding/binder.go

    	// ErrReasonNodeConflict is used for VolumeNodeAffinityConflict predicate error.
    	ErrReasonNodeConflict ConflictReason = "node(s) had volume node affinity conflict"
    	// ErrReasonNotEnoughSpace is used when a pod cannot start on a node because not enough storage space is available.
    	ErrReasonNotEnoughSpace = "node(s) did not have enough free storage"
    	// ErrReasonPVNotExist is used when a pod has one or more PVC(s) bound to non-existent persistent volume(s)"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 14:55:34 UTC 2024
    - 42.6K bytes
    - Viewed (0)
Back to top