Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for MountVolume (0.12 sec)

  1. pkg/volume/csi/csi_block.go

     - TearDownDevice calls CSI's NodeUnstageVolume and unstage a volume from its staging path.
    
    These methods are called by below sequences:
     - operation_executor.MountVolume
       - csi.GetGlobalMapPath
       - csi.SetupDevice
         - NodeStageVolume
       - ASW.MarkDeviceAsMounted
       - csi.GetPodDeviceMapPath
       - csi.MapPodDevice
         - NodePublishVolume
       - util.MapBlockVolume
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 11 06:07:40 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  2. pkg/volume/csi/csi_plugin.go

    			},
    			VolumeMode: &fsMode,
    		},
    	}
    	return volume.NewSpecFromPersistentVolume(pv, false)
    }
    
    func (p *csiPlugin) SupportsMountOption() bool {
    	// TODO (vladimirvivien) use CSI VolumeCapability.MountVolume.mount_flags
    	// to probe for the result for this method
    	// (bswartz) Until the CSI spec supports probing, our only option is to
    	// make plugins register their support for mount options or lack thereof
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  3. pkg/kubelet/volumemanager/reconciler/reconciler_test.go

    			volumeToMount := operationexecutor.VolumeToMount{
    				Pod:        pod,
    				VolumeSpec: tmpSpec}
    			err := oex.MountVolume(waitForAttachTimeout, volumeToMount, asw, false)
    			// Assert
    			if assert.Error(t, err) {
    				assert.Contains(t, err.Error(), tc.expectedErrMsg)
    			}
    		})
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 75.4K bytes
    - Viewed (0)
Back to top