Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for storageinformersv1 (0.22 sec)

  1. pkg/controller/volume/attachdetach/attach_detach_controller.go

    	pvcInformer coreinformers.PersistentVolumeClaimInformer,
    	pvInformer coreinformers.PersistentVolumeInformer,
    	csiNodeInformer storageinformersv1.CSINodeInformer,
    	csiDriverInformer storageinformersv1.CSIDriverInformer,
    	volumeAttachmentInformer storageinformersv1.VolumeAttachmentInformer,
    	plugins []volume.VolumePlugin,
    	prober volume.DynamicPluginProber,
    	disableReconciliationSync bool,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  2. plugin/pkg/auth/authorizer/node/graph_populator.go

    	storageinformers "k8s.io/client-go/informers/storage/v1"
    	"k8s.io/client-go/tools/cache"
    )
    
    type graphPopulator struct {
    	graph *Graph
    }
    
    func AddGraphEventHandlers(
    	graph *Graph,
    	nodes corev1informers.NodeInformer,
    	pods corev1informers.PodInformer,
    	pvs corev1informers.PersistentVolumeInformer,
    	attachments storageinformers.VolumeAttachmentInformer,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/volumebinding/binder.go

    // are only needed when checking volume sizes against available storage
    // capacity is desired.
    type CapacityCheck struct {
    	CSIDriverInformer          storageinformers.CSIDriverInformer
    	CSIStorageCapacityInformer storageinformers.CSIStorageCapacityInformer
    }
    
    // NewVolumeBinder sets up all the caches needed for the scheduler to make volume binding decisions.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 14:55:34 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  4. pkg/controller/volume/persistentvolume/pv_controller_base.go

    	utilruntime "k8s.io/apimachinery/pkg/util/runtime"
    	"k8s.io/apimachinery/pkg/util/wait"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	coreinformers "k8s.io/client-go/informers/core/v1"
    	storageinformers "k8s.io/client-go/informers/storage/v1"
    	clientset "k8s.io/client-go/kubernetes"
    	"k8s.io/client-go/kubernetes/scheme"
    	v1core "k8s.io/client-go/kubernetes/typed/core/v1"
    	corelisters "k8s.io/client-go/listers/core/v1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 29.5K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/volumebinding/binder_test.go

    	internalPodInformer     coreinformers.PodInformer
    	internalNodeInformer    coreinformers.NodeInformer
    	internalCSINodeInformer storageinformers.CSINodeInformer
    
    	// For CSIStorageCapacity feature testing:
    	internalCSIDriverInformer          storageinformers.CSIDriverInformer
    	internalCSIStorageCapacityInformer storageinformers.CSIStorageCapacityInformer
    }
    
    func newTestBinder(t *testing.T, ctx context.Context) *testEnv {
    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