Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for IsLikelyNotMountPoint (0.16 sec)

  1. 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)
  2. 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)
  3. pkg/volume/emptydir/empty_dir.go

    	return ed.SetUpAt(ed.GetPath(), mounterArgs)
    }
    
    // SetUpAt creates new directory.
    func (ed *emptyDir) SetUpAt(dir string, mounterArgs volume.MounterArgs) error {
    	notMnt, err := ed.mounter.IsLikelyNotMountPoint(dir)
    	// Getting an os.IsNotExist err from is a contingency; the directory
    	// may not exist yet, in which case, setup should run.
    	if err != nil && !os.IsNotExist(err) {
    		return err
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 19K bytes
    - Viewed (0)
  4. pkg/volume/local/local.go

    func (dm *deviceMounter) mountLocalBlockDevice(spec *volume.Spec, devicePath string, deviceMountPath string) error {
    	klog.V(4).Infof("local: mounting device %s to %s", devicePath, deviceMountPath)
    	notMnt, err := dm.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: Tue May 14 06:17:25 UTC 2024
    - 22.2K bytes
    - Viewed (0)
Back to top