Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for MarkVolumeAsDetached (0.19 sec)

  1. pkg/kubelet/volumemanager/cache/actual_state_of_world_test.go

    				err := asw.MarkVolumeAsUnmounted(volumeOpts.PodName, volumeOpts.VolumeName)
    				if err != nil {
    					return err
    				}
    				asw.MarkVolumeAsDetached(volumeOpts.VolumeName, "")
    				return nil
    			},
    			verifyCallback: func(asw ActualStateOfWorld, volumeOpts operationexecutor.MarkVolumeOpts) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  2. pkg/kubelet/volumemanager/reconciler/reconciler_common.go

    				// Kubelet not responsible for detaching or this volume has a non-attachable volume plugin.
    				if rc.controllerAttachDetachEnabled || !attachedVolume.PluginIsAttachable {
    					rc.actualStateOfWorld.MarkVolumeAsDetached(attachedVolume.VolumeName, attachedVolume.NodeName)
    					klog.InfoS(attachedVolume.GenerateMsgDetailed("Volume detached", fmt.Sprintf("DevicePath %q", attachedVolume.DevicePath)))
    				} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:23:12 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  3. pkg/volume/util/operationexecutor/operation_executor.go

    	MarkVolumeAsUncertain(logger klog.Logger, volumeName v1.UniqueVolumeName, volumeSpec *volume.Spec, nodeName types.NodeName) error
    
    	// Marks the specified volume as detached from the specified node
    	MarkVolumeAsDetached(volumeName v1.UniqueVolumeName, nodeName types.NodeName)
    
    	// Marks desire to detach the specified volume (remove the volume from the node's
    	// volumesToReportAsAttached list)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 42.6K bytes
    - Viewed (0)
Back to top