Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for nodeHasAccess (0.15 sec)

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

    	}
    
    	sizeInBytes := quantity.Value()
    	for _, capacity := range capacities {
    		if capacity.StorageClassName == storageClass.Name &&
    			capacitySufficient(capacity, sizeInBytes) &&
    			b.nodeHasAccess(logger, node, capacity) {
    			// Enough capacity found.
    			return true, nil
    		}
    	}
    
    	// TODO (?): this doesn't give any information about which pools where considered and why
    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