Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for IsInconsistentReadError (0.27 sec)

  1. pkg/volume/util/util.go

    		if err == nil && volumeDeviceMounter != nil {
    			return true
    		}
    	}
    
    	return false
    }
    
    // GetReliableMountRefs calls mounter.GetMountRefs and retries on IsInconsistentReadError.
    // To be used in volume reconstruction of volume plugins that don't have any protection
    // against mounting a single volume on multiple nodes (such as attach/detach).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  2. pkg/volume/fc/fc.go

    	// The volume can then be mounted on several nodes, resulting in volume
    	// corruption.
    	paths, err := util.GetReliableMountRefs(mounter, mountPath)
    	if io.IsInconsistentReadError(err) {
    		klog.Errorf("Failed to read mount refs from /proc/mounts for %s: %s", mountPath, err)
    		klog.Errorf("Kubelet cannot unmount volume at %s, please unmount it manually", mountPath)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  3. pkg/volume/iscsi/iscsi.go

    	// The volume can then be mounted on several nodes, resulting in volume
    	// corruption.
    	paths, err := ioutil.GetReliableMountRefs(mounter, mountPath)
    	if io.IsInconsistentReadError(err) {
    		klog.Errorf("Failed to read mount refs from /proc/mounts for %s: %s", mountPath, err)
    		klog.Errorf("Kubelet cannot unmount volume at %s, please unmount it and all mounts of the same device manually.", mountPath)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 23.4K bytes
    - Viewed (0)
Back to top