Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for MountDevice (0.27 sec)

  1. pkg/volume/iscsi/attacher.go

    		// new iface name is <target portal>:<volume name>
    		mounter.Iface = mounter.Portals[0] + ":" + mounter.VolName
    	}
    	return attacher.manager.MakeGlobalPDName(*mounter.iscsiDisk), nil
    }
    
    func (attacher *iscsiAttacher) MountDevice(spec *volume.Spec, devicePath string, deviceMountPath string, mountArgs volume.DeviceMounterArgs) error {
    	mounter := attacher.host.GetMounter(iscsiPluginName)
    	notMnt, err := mounter.IsLikelyNotMountPoint(deviceMountPath)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 04 08:51:31 UTC 2022
    - 6.8K bytes
    - Viewed (0)
  2. pkg/volume/fc/attacher.go

    	if err != nil {
    		klog.Warningf("failed to get fc mounter: %v", err)
    		return "", err
    	}
    
    	return attacher.manager.MakeGlobalPDName(*mounter.fcDisk), nil
    }
    
    func (attacher *fcAttacher) MountDevice(spec *volume.Spec, devicePath string, deviceMountPath string, mountArgs volume.DeviceMounterArgs) error {
    	mounter := attacher.host.GetMounter(fcPluginName)
    	notMnt, err := mounter.IsLikelyNotMountPoint(deviceMountPath)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 31 12:02:51 UTC 2022
    - 7.5K bytes
    - Viewed (0)
Back to top