Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for IsLikelyNotMountPoint (0.28 sec)

  1. pkg/volume/fc/disk_manager.go

    		noMnt, mntErr := b.mounter.IsLikelyNotMountPoint(volPath)
    		if mntErr != nil {
    			klog.Errorf("IsLikelyNotMountPoint check failed: %v", mntErr)
    			return err
    		}
    		if !noMnt {
    			if mntErr = b.mounter.Unmount(volPath); mntErr != nil {
    				klog.Errorf("Failed to unmount: %v", mntErr)
    				return err
    			}
    			noMnt, mntErr = b.mounter.IsLikelyNotMountPoint(volPath)
    			if mntErr != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 03 19:34:37 UTC 2023
    - 3K bytes
    - Viewed (0)
  2. pkg/volume/iscsi/disk_manager.go

    		noMnt, mntErr := b.mounter.IsLikelyNotMountPoint(volPath)
    		if mntErr != nil {
    			klog.Errorf("IsLikelyNotMountPoint check failed: %v", mntErr)
    			return err
    		}
    		if !noMnt {
    			if mntErr = b.mounter.Unmount(volPath); mntErr != nil {
    				klog.Errorf("Failed to unmount: %v", mntErr)
    				return err
    			}
    			noMnt, mntErr = b.mounter.IsLikelyNotMountPoint(volPath)
    			if mntErr != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 03 19:34:37 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  3. pkg/util/removeall/removeall_test.go

    	"testing"
    
    	utiltesting "k8s.io/client-go/util/testing"
    	"k8s.io/mount-utils"
    )
    
    type fakeMounter struct {
    	mount.FakeMounter
    }
    
    // IsLikelyNotMountPoint overrides mount.FakeMounter.IsLikelyNotMountPoint for our use.
    func (f *fakeMounter) IsLikelyNotMountPoint(file string) (bool, error) {
    	name := filepath.Base(file)
    	if strings.HasPrefix(name, "mount") {
    		return false, nil
    	}
    	if strings.HasPrefix(name, "err") {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 15 20:35:13 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  4. pkg/volume/csi/csi_mounter.go

    	}
    	return false
    }
    
    // isDirMounted returns the !notMounted result from IsLikelyNotMountPoint check
    func isDirMounted(plug *csiPlugin, dir string) (bool, error) {
    	mounter := plug.host.GetMounter(plug.GetPluginName())
    	notMnt, err := mounter.IsLikelyNotMountPoint(dir)
    	if err != nil && !os.IsNotExist(err) {
    		klog.Error(log("isDirMounted IsLikelyNotMountPoint test failed for dir [%v]", dir))
    		return false, err
    	}
    	return !notMnt, nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 30 10:47:59 UTC 2024
    - 21K bytes
    - Viewed (0)
  5. pkg/volume/iscsi/attacher.go

    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)
    	if err != nil {
    		if os.IsNotExist(err) {
    			if err := os.MkdirAll(deviceMountPath, 0750); err != nil {
    				return err
    			}
    			notMnt = true
    		} else {
    			return err
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 04 08:51:31 UTC 2022
    - 6.8K bytes
    - Viewed (0)
  6. pkg/volume/fc/attacher.go

    }
    
    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)
    	if err != nil {
    		if os.IsNotExist(err) {
    			if err := os.MkdirAll(deviceMountPath, 0750); err != nil {
    				return err
    			}
    			notMnt = true
    		} else {
    			return err
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 31 12:02:51 UTC 2022
    - 7.5K bytes
    - Viewed (0)
  7. pkg/volume/nfs/nfs.go

    	return c.TearDownAt(c.GetPath())
    }
    
    func (c *nfsUnmounter) TearDownAt(dir string) error {
    	// Use extensiveMountPointCheck to consult /proc/mounts. We can't use faster
    	// IsLikelyNotMountPoint (lstat()), since there may be root_squash on the
    	// NFS server and kubelet may not be able to do lstat/stat() there.
    	forceUnmounter, ok := c.mounter.(mount.MounterForceUnmounter)
    	if ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet_getters.go

    	mountedVolumes := []string{}
    	volumePaths, err := kl.getPodVolumePathListFromDisk(podUID)
    	if err != nil {
    		return mountedVolumes, err
    	}
    	// Only use IsLikelyNotMountPoint to check might not cover all cases. For CSI volumes that
    	// either: 1) don't mount or 2) bind mount in the rootfs, the mount check will not work as expected.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 00:48:07 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  9. pkg/volume/portworx/portworx.go

    }
    
    // SetUpAt attaches the disk and bind mounts to the volume path.
    func (b *portworxVolumeMounter) SetUpAt(dir string, mounterArgs volume.MounterArgs) error {
    	notMnt, err := b.mounter.IsLikelyNotMountPoint(dir)
    	klog.Infof("Portworx Volume set up. Dir: %s %v %v", dir, !notMnt, err)
    	if err != nil && !os.IsNotExist(err) {
    		klog.Errorf("Cannot validate mountpoint: %s", dir)
    		return err
    	}
    	if !notMnt {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  10. pkg/volume/util/fsquota/quota_linux.go

    		// activity takes place, it is not able to get a consistent
    		// view of /proc/self/mounts, causing it to time out and
    		// report incorrectly.
    		isNotMount, err := m.IsLikelyNotMountPoint(path)
    		if err != nil {
    			return "/", err
    		}
    		if !isNotMount {
    			return path, nil
    		}
    		path = filepath.Dir(path)
    	}
    	return "/", nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 07 08:07:51 UTC 2023
    - 14.1K bytes
    - Viewed (0)
Back to top