Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for storagelisters (0.16 sec)

  1. pkg/scheduler/framework/plugins/nodevolumelimits/csi.go

    }
    
    // CSILimits is a plugin that checks node volume limits.
    type CSILimits struct {
    	csiNodeLister storagelisters.CSINodeLister
    	pvLister      corelisters.PersistentVolumeLister
    	pvcLister     corelisters.PersistentVolumeClaimLister
    	scLister      storagelisters.StorageClassLister
    
    	randomVolumeIDPrefix string
    
    	translator InTreeToCSITranslator
    }
    
    var _ framework.PreFilterPlugin = &CSILimits{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 18:07:11 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  2. pkg/volume/csi/csi_plugin.go

    )
    
    type csiPlugin struct {
    	host                      volume.VolumeHost
    	csiDriverLister           storagelisters.CSIDriverLister
    	serviceAccountTokenGetter func(namespace, name string, tr *authenticationv1.TokenRequest) (*authenticationv1.TokenRequest, error)
    	volumeAttachmentLister    storagelisters.VolumeAttachmentLister
    }
    
    // ProbeVolumePlugins returns implemented plugins
    func ProbeVolumePlugins() []volume.VolumePlugin {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  3. pkg/volume/plugins.go

    	CSINodeLister() storagelistersv1.CSINodeLister
    
    	// CSIDriverLister returns the informer lister for the CSIDriver API Object
    	CSIDriverLister() storagelistersv1.CSIDriverLister
    
    	// VolumeAttachmentLister returns the informer lister for the VolumeAttachment API Object
    	VolumeAttachmentLister() storagelistersv1.VolumeAttachmentLister
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 38.2K bytes
    - Viewed (0)
Back to top