Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for GetDeviceMountState (0.28 sec)

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

    	// Marks the specified volume's file system resize request is finished.
    	MarkVolumeAsResized(volumeName v1.UniqueVolumeName, claimSize *resource.Quantity) bool
    
    	// GetDeviceMountState returns mount state of the device in global path
    	GetDeviceMountState(volumeName v1.UniqueVolumeName) DeviceMountState
    
    	// GetVolumeMountState returns mount state of the volume for the Pod
    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/volume/util/operationexecutor/operation_generator.go

    		}
    
    		var resizeError error
    		resizeOptions := volume.NodeResizeOptions{
    			DevicePath: devicePath,
    		}
    
    		if volumeDeviceMounter != nil && actualStateOfWorld.GetDeviceMountState(volumeToMount.VolumeName) != DeviceGloballyMounted {
    			deviceMountPath, err :=
    				volumeDeviceMounter.GetDeviceMountPath(volumeToMount.VolumeSpec)
    			if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  3. pkg/kubelet/volumemanager/cache/actual_state_of_world.go

    	} else {
    		volumeObj.pluginIsAttachable = volumeAttachabilityFalse
    	}
    	asw.attachedVolumes[volumeName] = volumeObj
    }
    
    func (asw *actualStateOfWorld) GetDeviceMountState(volumeName v1.UniqueVolumeName) operationexecutor.DeviceMountState {
    	asw.RLock()
    	defer asw.RUnlock()
    
    	volumeObj, volumeExists := asw.attachedVolumes[volumeName]
    	if !volumeExists {
    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