Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for newReconciler (0.11 sec)

  1. pkg/kubelet/pluginmanager/reconciler/reconciler.go

    	// AddHandler adds the given plugin handler for a specific plugin type,
    	// which will be added to the actual state of world cache.
    	AddHandler(pluginType string, pluginHandler cache.PluginHandler)
    }
    
    // NewReconciler returns a new instance of Reconciler.
    //
    // operationExecutor - used to trigger register/unregister operations safely
    // (prevents more than one operation from being triggered on the same
    // socket path)
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 6.2K bytes
    - Viewed (0)
  2. pkg/kubelet/pluginmanager/plugin_manager.go

    // PluginManager interface.
    func NewPluginManager(
    	sockDir string,
    	recorder record.EventRecorder) PluginManager {
    	asw := cache.NewActualStateOfWorld()
    	dsw := cache.NewDesiredStateOfWorld()
    	reconciler := reconciler.NewReconciler(
    		operationexecutor.NewOperationExecutor(
    			operationexecutor.NewOperationGenerator(
    				recorder,
    			),
    		),
    		loopSleepDuration,
    		dsw,
    		asw,
    	)
    
    	pm := &pluginManager{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 01 05:56:33 UTC 2022
    - 4.3K bytes
    - Viewed (0)
Back to top