Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for TearDownAt (0.13 sec)

  1. pkg/volume/fc/fc.go

    // Unmounts the bind mount, and detaches the disk only if the disk
    // resource was the last reference to that disk on the kubelet.
    func (c *fcDiskUnmounter) TearDown() error {
    	return c.TearDownAt(c.GetPath())
    }
    
    func (c *fcDiskUnmounter) TearDownAt(dir string) error {
    	return mount.CleanupMountPoint(dir, c.mounter, false)
    }
    
    // Block Volumes Support
    type fcDiskMapper struct {
    	*fcDisk
    	volume.MetricsProvider
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  2. pkg/volume/volume.go

    	// 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
    }
    
    // BlockVolumeMapper interface is a mapper interface for block volume.
    type BlockVolumeMapper interface {
    	BlockVolume
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  3. pkg/volume/util/util.go

    	// Wrap EmptyDir, let it do the teardown.
    	wrapped, err := host.NewWrapperUnmounter(volName, volSpec, podUID)
    	if err != nil {
    		return err
    	}
    	return wrapped.TearDownAt(dir)
    }
    
    // MountOptionFromSpec extracts and joins mount options from volume spec with supplied options
    func MountOptionFromSpec(spec *volume.Spec, options ...string) []string {
    	pv := spec.PersistentVolume
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 28.8K bytes
    - Viewed (0)
Back to top