Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for IsVolumeDeviceReconstructed (0.21 sec)

  1. pkg/volume/util/operationexecutor/operation_executor.go

    	// was found during reconstruction.
    	IsVolumeReconstructed(volumeName v1.UniqueVolumeName, podName volumetypes.UniquePodName) bool
    
    	// IsVolumeDeviceReconstructed returns true if volume device identified by volumeName has been
    	// found during reconstruction.
    	IsVolumeDeviceReconstructed(volumeName v1.UniqueVolumeName) bool
    }
    
    // ActualStateOfWorldAttacherUpdater defines a set of operations updating the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  2. pkg/kubelet/volumemanager/cache/actual_state_of_world.go

    	defer asw.RUnlock()
    	podMap, ok := asw.foundDuringReconstruction[volumeName]
    	if !ok {
    		return false
    	}
    	_, foundPod := podMap[podName]
    	return foundPod
    }
    
    func (asw *actualStateOfWorld) IsVolumeDeviceReconstructed(volumeName v1.UniqueVolumeName) bool {
    	asw.RLock()
    	defer asw.RUnlock()
    	_, ok := asw.foundDuringReconstruction[volumeName]
    	return ok
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 45.8K bytes
    - Viewed (0)
  3. pkg/volume/util/operationexecutor/operation_generator.go

    	if volumetypes.IsOperationFinishedError(mountError) &&
    		actualStateOfWorld.GetDeviceMountState(volumeToMount.VolumeName) == DeviceMountUncertain {
    
    		if actualStateOfWorld.IsVolumeDeviceReconstructed(volumeToMount.VolumeName) {
    			klog.V(2).InfoS("MountVolume.markDeviceErrorState leaving volume uncertain", "volumeName", volumeToMount.VolumeName)
    			return
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
Back to top