Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 315 for Unmount (0.32 sec)

  1. pkg/kubelet/volumemanager/reconciler/reconciler_common.go

    // are all ready (before sources are ready, pods are probably missing)
    //
    // operationExecutor - used to trigger attach/detach/mount/unmount operations
    // safely (prevents more than one operation from being triggered on the same
    // volume)
    //
    // mounter - mounter passed in from kubelet, passed down unmount path
    //
    // hostutil - hostutil passed in from kubelet
    //
    // volumePluginMgr - volume plugin manager passed from kubelet
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:23:12 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  2. pkg/volume/util/operationexecutor/operation_executor.go

    	OuterVolumeSpecName string
    
    	// PluginName is the "Unescaped Qualified" name of the volume plugin used to
    	// mount and unmount this volume. It can be used to fetch the volume plugin
    	// to unmount with, on demand. It is also the name that plugins use, though
    	// escaped, in their pod mount path, i.e.
    	// /var/lib/kubelet/pods/{podUID}/volumes/{escapeQualifiedPluginName}/{outerVolumeSpecName}/
    	PluginName string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  3. pkg/kubelet/volumemanager/volume_manager.go

    	// The data structure is populated upon successful completion of attach,
    	// detach, mount, and unmount actions triggered by the reconciler.
    	actualStateOfWorld cache.ActualStateOfWorld
    
    	// operationExecutor is used to start asynchronous attach, detach, mount,
    	// and unmount operations.
    	operationExecutor operationexecutor.OperationExecutor
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  4. src/syscall/exec_linux_test.go

    	const mountNotSupported = "mount is not supported: " // Output prefix indicating a test skip.
    	if os.Getenv("GO_WANT_HELPER_PROCESS") == "1" {
    		dir := flag.Args()[0]
    		err := syscall.Mount("none", dir, "proc", 0, "")
    		if testenv.SyscallIsNotSupported(err) {
    			fmt.Print(mountNotSupported, err)
    		} else if err != nil {
    			fmt.Fprintf(os.Stderr, "unshare: mount %s: %v\n", dir, err)
    			os.Exit(2)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  5. pkg/volume/local/local.go

    var _ volume.Unmounter = &localVolumeUnmounter{}
    
    // TearDown unmounts the bind mount
    func (u *localVolumeUnmounter) TearDown() error {
    	return u.TearDownAt(u.GetPath())
    }
    
    // TearDownAt unmounts the bind mount
    func (u *localVolumeUnmounter) TearDownAt(dir string) error {
    	klog.V(4).Infof("Unmounting volume %q at path %q\n", u.volName, dir)
    	return mount.CleanupMountPoint(dir, u.mounter, true) /* extensiveMountPointCheck = true */
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  6. pkg/kubelet/volumemanager/reconciler/reconstruct_test.go

    			// Assert
    			if len(rcInstance.volumesFailedReconstruction) != 0 {
    				t.Errorf("Expected volumesFailedReconstruction to be empty, got %+v", rcInstance.volumesFailedReconstruction)
    			}
    			// Unmount runs in a go routine, wait for its finish
    			var lastErr error
    			err = retryWithExponentialBackOff(testOperationBackOffDuration, func() (bool, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  7. pkg/kubelet/volumemanager/cache/actual_state_of_world.go

    	// In particular, the Unmount method uses spec.Name() as the volumeSpecName
    	// in the mount path:
    	// /var/lib/kubelet/pods/{podUID}/volumes/{escapeQualifiedPluginName}/{volumeSpecName}/
    	spec *volume.Spec
    
    	// pluginName is the Unescaped Qualified name of the volume plugin used to
    	// attach and mount this volume. It is stored separately in case the full
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 45.8K bytes
    - Viewed (0)
  8. pkg/volume/volume.go

    	GetAttributes() Attributes
    }
    
    // Unmounter interface provides methods to cleanup/unmount the volumes.
    type Unmounter interface {
    	Volume
    	// TearDown unmounts the volume from a self-determined directory and
    	// removes traces of the SetUp procedure.
    	TearDown() error
    	// TearDown unmounts the volume from the specified directory and
    	// removes traces of the SetUp procedure.
    	TearDownAt(dir string) error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  9. pkg/volume/fc/fc.go

    	}
    	return err
    }
    
    type fcDiskUnmounter struct {
    	*fcDisk
    	mounter    mount.Interface
    	deviceUtil util.DeviceUtil
    	exec       utilexec.Interface
    }
    
    var _ volume.Unmounter = &fcDiskUnmounter{}
    
    // Unmounts the bind mount, and detaches the disk only if the disk
    // resource was the last reference to that disk on the kubelet.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  10. pkg/volume/iscsi/iscsi.go

    		// TODO: extract from mount table in GetAttributes() to be sure?
    		b.mountedWithSELinuxContext = mounterArgs.SELinuxLabel != ""
    	}
    	return err
    }
    
    type iscsiDiskUnmounter struct {
    	*iscsiDisk
    	mounter    mount.Interface
    	exec       utilexec.Interface
    	deviceUtil ioutil.DeviceUtil
    }
    
    var _ volume.Unmounter = &iscsiDiskUnmounter{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 23.4K bytes
    - Viewed (0)
Back to top