Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for MarkDeviceAsUnmounted (0.77 sec)

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

    			return
    		}
    
    		// Only devices which were uncertain can be marked as unmounted
    		markDeviceUnmountError := actualStateOfWorld.MarkDeviceAsUnmounted(volumeToMount.VolumeName)
    		if markDeviceUnmountError != nil {
    			klog.Errorf(volumeToMount.GenerateErrorDetailed("MountDevice.MarkDeviceAsUnmounted failed", markDeviceUnmountError).Error())
    		}
    		return
    	}
    
    	if volumetypes.IsUncertainProgressError(mountError) &&
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  2. pkg/volume/csi/csi_block.go

       - util.UnmapBlockVolume
       - csi.UnmapPodDevice
         - NodeUnpublishVolume
       - ASW.MarkVolumeAsUnmounted
    
     - operation_executor.UnmountDevice
       - csi.TearDownDevice
         - NodeUnstageVolume
       - ASW.MarkDeviceAsUnmounted
    
    After successful MountVolume for block volume, directory structure will be like below:
      /dev/loopX ... Descriptor lock(Loopback device to mapFile under global map path)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 11 06:07:40 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  3. pkg/volume/util/operationexecutor/operation_executor.go

    	MarkDeviceAsUncertain(volumeName v1.UniqueVolumeName, devicePath, deviceMountPath, seLinuxMountContext string) error
    
    	// Marks the specified volume as having its global mount unmounted.
    	MarkDeviceAsUnmounted(volumeName v1.UniqueVolumeName) error
    
    	// Marks the specified volume's file system resize request is finished.
    	MarkVolumeAsResized(volumeName v1.UniqueVolumeName, claimSize *resource.Quantity) bool
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  4. pkg/kubelet/volumemanager/cache/actual_state_of_world.go

    	markVolumeOpts.VolumeMountState = operationexecutor.VolumeMountUncertain
    	return asw.AddPodToVolume(markVolumeOpts)
    }
    
    func (asw *actualStateOfWorld) MarkDeviceAsUnmounted(
    	volumeName v1.UniqueVolumeName) error {
    	return asw.SetDeviceMountState(volumeName, operationexecutor.DeviceNotMounted, "", "", "")
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 45.8K bytes
    - Viewed (0)
Back to top