Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for NewVolumeBinder (0.21 sec)

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

    // CapacityCheck contains additional parameters for NewVolumeBinder that
    // are only needed when checking volume sizes against available storage
    // capacity is desired.
    type CapacityCheck struct {
    	CSIDriverInformer          storageinformers.CSIDriverInformer
    	CSIStorageCapacityInformer storageinformers.CSIStorageCapacityInformer
    }
    
    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/plugins/volumebinding/volume_binding.go

    		CSIDriverInformer:          fh.SharedInformerFactory().Storage().V1().CSIDrivers(),
    		CSIStorageCapacityInformer: fh.SharedInformerFactory().Storage().V1().CSIStorageCapacities(),
    	}
    	binder := NewVolumeBinder(klog.FromContext(ctx), fh.ClientSet(), podInformer, nodeInformer, csiNodeInformer, pvcInformer, pvInformer, storageClassInformer, capacityCheck, time.Duration(args.BindTimeoutSeconds)*time.Second)
    
    	// build score function
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 14:13:06 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/volumebinding/binder_test.go

    	capacityCheck := CapacityCheck{
    		CSIDriverInformer:          csiDriverInformer,
    		CSIStorageCapacityInformer: csiStorageCapacityInformer,
    	}
    	binder := NewVolumeBinder(
    		logger,
    		client,
    		podInformer,
    		nodeInformer,
    		csiNodeInformer,
    		pvcInformer,
    		informerFactory.Core().V1().PersistentVolumes(),
    		classInformer,
    		capacityCheck,
    		10*time.Second)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 82.8K bytes
    - Viewed (0)
Back to top