Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for MountSensitiveWithoutSystemd (0.23 sec)

  1. pkg/volume/emptydir/empty_dir.go

    	klog.V(3).Infof("pod %v: mounting tmpfs for volume %v", ed.pod.UID, ed.volName)
    	return ed.mounter.MountSensitiveWithoutSystemd("tmpfs", dir, "tmpfs", options, nil)
    }
    
    // setupHugepages creates a hugepage mount at the specified directory.
    func (ed *emptyDir) setupHugepages(dir string) error {
    	if ed.mounter == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. pkg/volume/local/local.go

    	}
    	mountOptions := util.JoinMountOptions(options, m.mountOptions)
    
    	klog.V(4).Infof("attempting to mount %s", dir)
    	globalPath := util.MakeAbsolutePath(runtime.GOOS, m.globalPath)
    	err = m.mounter.MountSensitiveWithoutSystemd(globalPath, dir, "", mountOptions, nil)
    	if err != nil {
    		klog.Errorf("Mount of volume %s failed: %v", dir, err)
    		notMnt, mntErr := mount.IsNotMountPoint(m.mounter, dir)
    		if mntErr != nil {
    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