Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for reconciliationLoopFunc (0.2 sec)

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

    	wait.UntilWithContext(ctx, rc.reconciliationLoopFunc(ctx), rc.loopPeriod)
    }
    
    // reconciliationLoopFunc this can be disabled via cli option disableReconciliation.
    // It periodically checks whether the attached volumes from actual state
    // are still attached to the node and update the status if they are not.
    func (rc *reconciler) reconciliationLoopFunc(ctx context.Context) func(context.Context) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 21:02:38 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  2. pkg/controller/volume/attachdetach/reconciler/reconciler_test.go

    	defer cancel()
    	rc := NewReconciler(
    		reconcilerLoopPeriod, maxWaitForUnmountDuration, syncLoopPeriod, false, false, dsw, asw, ad, nsu, nodeLister, fakeRecorder)
    	reconciliationLoopFunc := rc.(*reconciler).reconciliationLoopFunc(ctx)
    	podName1 := "pod-uid1"
    	volumeName := v1.UniqueVolumeName("volume-name")
    	volumeSpec := controllervolumetesting.GetTestVolumeSpec(string(volumeName), volumeName)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:14 UTC 2024
    - 72.8K bytes
    - Viewed (0)
Back to top