Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for newReconciler (0.17 sec)

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

    	oex := operationexecutor.NewOperationExecutor(operationexecutor.NewOperationGenerator(
    		kubeClient,
    		volumePluginMgr,
    		fakeRecorder,
    		fakeHandler,
    	))
    	reconciler := NewReconciler(
    		kubeClient,
    		false, /* controllerAttachDetachEnabled */
    		reconcilerLoopSleepDuration,
    		waitForAttachTimeout,
    		nodeName,
    		dsw,
    		asw,
    		hasAddedPods,
    		oex,
    		mount.NewFakeMounter(nil),
    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

    	nsu := statusupdater.NewNodeStatusUpdater(
    		fakeKubeClient, informerFactory.Core().V1().Nodes().Lister(), asw)
    	nodeLister := informerFactory.Core().V1().Nodes().Lister()
    	reconciler := NewReconciler(
    		reconcilerLoopPeriod, maxWaitForUnmountDuration, syncLoopPeriod, false, false, dsw, asw, ad, nsu, nodeLister, fakeRecorder)
    
    	// Act
    	_, ctx := ktesting.NewTestContext(t)
    	ctx, cancel := context.WithCancel(ctx)
    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/kubelet/volumemanager/reconciler/reconciler_common.go

    	Run(stopCh <-chan struct{})
    
    	// StatesHasBeenSynced returns true only after syncStates process starts to sync
    	// states at least once after kubelet starts
    	StatesHasBeenSynced() bool
    }
    
    // NewReconciler returns a new instance of Reconciler.
    //
    // controllerAttachDetachEnabled - if true, indicates that the attach/detach
    // controller is responsible for managing the attach/detach operations for
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:23:12 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  4. pkg/kubelet/volumemanager/volume_manager.go

    		podStateProvider,
    		vm.desiredStateOfWorld,
    		vm.actualStateOfWorld,
    		kubeContainerRuntime,
    		csiMigratedPluginManager,
    		intreeToCSITranslator,
    		volumePluginMgr)
    	vm.reconciler = reconciler.NewReconciler(
    		kubeClient,
    		controllerAttachDetachEnabled,
    		reconcilerLoopSleepPeriod,
    		waitForAttachTimeout,
    		nodeName,
    		vm.desiredStateOfWorld,
    		vm.actualStateOfWorld,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  5. pkg/controller/endpointslice/endpointslice_controller.go

    			},
    			DeleteFunc: func(_ interface{}) {
    				c.deleteNode()
    			},
    		})
    
    		c.topologyCache = topologycache.NewTopologyCache()
    	}
    
    	c.reconciler = endpointslicerec.NewReconciler(
    		c.client,
    		c.nodeLister,
    		c.maxEndpointsPerSlice,
    		c.endpointSliceTracker,
    		c.topologyCache,
    		c.eventRecorder,
    		controllerName,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  6. pkg/controller/volume/attachdetach/attach_detach_controller.go

    			blkutil))
    	adc.nodeStatusUpdater = statusupdater.NewNodeStatusUpdater(
    		kubeClient, nodeInformer.Lister(), adc.actualStateOfWorld)
    
    	// Default these to values in options
    	adc.reconciler = reconciler.NewReconciler(
    		timerConfig.ReconcilerLoopPeriod,
    		timerConfig.ReconcilerMaxWaitForUnmountDuration,
    		reconcilerSyncDuration,
    		disableReconciliationSync,
    		disableForceDetachOnTimeout,
    		adc.desiredStateOfWorld,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.6K bytes
    - Viewed (0)
Back to top