Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for syncClaim (0.3 sec)

  1. pkg/controller/volume/persistentvolume/pv_controller.go

    				logger.V(4).Info("Synchronizing PersistentVolume, volume was bound and got unbound (by user?), waiting for syncClaim to fix it", "volumeName", volume.Name)
    			}
    			// In both cases, the volume is Bound and the claim is Pending.
    			// Next syncClaim will fix it. To speed it up, we enqueue the claim
    			// into the controller, which results in syncClaim to be called
    			// shortly (and in the right worker goroutine).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  2. pkg/controller/volume/persistentvolume/pv_controller_base.go

    	// an old version.
    	logger := klog.FromContext(ctx)
    	new, err := ctrl.storeClaimUpdate(logger, claim)
    	if err != nil {
    		logger.Error(err, "")
    	}
    	if !new {
    		return
    	}
    	err = ctrl.syncClaim(ctx, claim)
    	if err != nil {
    		if errors.IsConflict(err) {
    			// Version conflict error happens quite often and the controller
    			// recovers from it easily.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 29.5K bytes
    - Viewed (0)
Back to top