Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for maxAttachLimit (0.34 sec)

  1. pkg/volume/csi/nodeinfomanager/nodeinfomanager.go

    		TopologyKeys: sets.List[string](topologyKeys),
    	}
    
    	if maxAttachLimit > 0 {
    		if maxAttachLimit > math.MaxInt32 {
    			klog.Warningf("Exceeded max supported attach limit value, truncating it to %d", math.MaxInt32)
    			maxAttachLimit = math.MaxInt32
    		}
    		m := int32(maxAttachLimit)
    		driverSpec.Allocatable = &storagev1.VolumeNodeResources{Count: &m}
    	} else if maxAttachLimit != 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 20.1K bytes
    - Viewed (0)
Back to top