Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for NewBlockVolumePathHandler (0.42 sec)

  1. pkg/kubelet/volumemanager/reconciler/reconciler_test.go

    	asw := cache.NewActualStateOfWorld(nodeName, volumePluginMgr)
    	kubeClient := createTestClient()
    	fakeRecorder := &record.FakeRecorder{}
    	fakeHandler := volumetesting.NewBlockVolumePathHandler()
    	oex := operationexecutor.NewOperationExecutor(operationexecutor.NewOperationGenerator(
    		kubeClient,
    		volumePluginMgr,
    		fakeRecorder,
    		fakeHandler,
    	))
    	reconciler := NewReconciler(
    		kubeClient,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  2. pkg/controller/volume/attachdetach/reconciler/reconciler_test.go

    	asw := cache.NewActualStateOfWorld(volumePluginMgr)
    
    	fakeKubeClient := controllervolumetesting.CreateTestClient()
    	fakeRecorder := &record.FakeRecorder{}
    	fakeHandler := volumetesting.NewBlockVolumePathHandler()
    	ad := operationexecutor.NewOperationExecutor(operationexecutor.NewOperationGenerator(
    		fakeKubeClient,
    		volumePluginMgr,
    		fakeRecorder,
    		fakeHandler))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:14 UTC 2024
    - 72.8K bytes
    - Viewed (0)
  3. pkg/volume/util/operationexecutor/operation_generator_test.go

    	fakeKubeClient := fakeclient.NewSimpleClientset(objects...)
    	fakeRecorder := &record.FakeRecorder{}
    	fakeHandler := volumetesting.NewBlockVolumePathHandler()
    	operationGenerator := NewOperationGenerator(
    		fakeKubeClient,
    		volumePluginMgr,
    		fakeRecorder,
    		fakeHandler)
    	return operationGenerator
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  4. pkg/kubelet/runonce_test.go

    		kb.nodeName,
    		kb.podManager,
    		kb.podWorkers,
    		kb.kubeClient,
    		kb.volumePluginMgr,
    		fakeRuntime,
    		kb.mounter,
    		kb.hostutil,
    		kb.getPodsDir(),
    		kb.recorder,
    		volumetest.NewBlockVolumePathHandler())
    
    	// TODO: Factor out "stats.Provider" from Kubelet so we don't have a cyclic dependency
    	volumeStatsAggPeriod := time.Second * 10
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 06:59:54 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  5. pkg/kubelet/volumemanager/volume_manager_test.go

    	fakeVolumeHost.WithNode(node)
    
    	plugMgr.InitPlugins([]volume.VolumePlugin{attachablePlug, unattachablePlug}, nil /* prober */, fakeVolumeHost)
    	stateProvider := &fakePodStateProvider{}
    	fakePathHandler := volumetest.NewBlockVolumePathHandler()
    	vm := NewVolumeManager(
    		true,
    		testHostname,
    		podManager,
    		stateProvider,
    		kubeClient,
    		plugMgr,
    		&containertest.FakeRuntime{},
    		mount.NewFakeMounter(nil),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  6. pkg/controller/volume/expand/expand_controller.go

    	expc.recorder = eventBroadcaster.NewRecorder(scheme.Scheme, v1.EventSource{Component: "volume_expand"})
    	blkutil := volumepathhandler.NewBlockVolumePathHandler()
    
    	expc.operationGenerator = operationexecutor.NewOperationGenerator(
    		kubeClient,
    		&expc.volumePluginMgr,
    		expc.recorder,
    		blkutil)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  7. pkg/volume/fc/fc.go

    func (plugin *fcPlugin) ConstructBlockVolumeSpec(podUID types.UID, volumeName, mapPath string) (*volume.Spec, error) {
    	pluginDir := plugin.host.GetVolumeDevicePluginDir(fcPluginName)
    	blkutil := volumepathhandler.NewBlockVolumePathHandler()
    	globalMapPathUUID, err := blkutil.FindGlobalMapPathUUIDFromPod(pluginDir, mapPath, podUID)
    	if err != nil {
    		return nil, err
    	}
    	klog.V(5).Infof("globalMapPathUUID: %v, err: %v", globalMapPathUUID, err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  8. pkg/volume/iscsi/iscsi.go

    func (plugin *iscsiPlugin) ConstructBlockVolumeSpec(podUID types.UID, volumeName, mapPath string) (*volume.Spec, error) {
    	pluginDir := plugin.host.GetVolumeDevicePluginDir(iscsiPluginName)
    	blkutil := volumepathhandler.NewBlockVolumePathHandler()
    	globalMapPathUUID, err := blkutil.FindGlobalMapPathUUIDFromPod(pluginDir, mapPath, podUID)
    	if err != nil {
    		return nil, err
    	}
    	klog.V(5).Infof("globalMapPathUUID: %v, err: %v", globalMapPathUUID, err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  9. pkg/controller/volume/attachdetach/attach_detach_controller.go

    	}
    
    	adc.broadcaster = record.NewBroadcaster(record.WithContext(ctx))
    	recorder := adc.broadcaster.NewRecorder(scheme.Scheme, v1.EventSource{Component: "attachdetach-controller"})
    	blkutil := volumepathhandler.NewBlockVolumePathHandler()
    
    	adc.desiredStateOfWorld = cache.NewDesiredStateOfWorld(&adc.volumePluginMgr)
    	adc.actualStateOfWorld = cache.NewActualStateOfWorld(&adc.volumePluginMgr)
    	adc.attacherDetacher =
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  10. pkg/volume/testing/testing.go

    	}
    
    	return pv, nil
    }
    
    var _ volumepathhandler.BlockVolumePathHandler = &FakeVolumePathHandler{}
    
    // NewDeviceHandler Create a new IoHandler implementation
    func NewBlockVolumePathHandler() volumepathhandler.BlockVolumePathHandler {
    	return &FakeVolumePathHandler{}
    }
    
    type FakeVolumePathHandler struct {
    	sync.RWMutex
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 53.3K bytes
    - Viewed (0)
Back to top