Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 49 for unmounted (0.37 sec)

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

    	// resizing.
    	rc.mountOrAttachVolumes()
    
    	// Unmount volumes only when DSW and ASW are fully populated to prevent unmounting a volume
    	// that is still needed, but it did not reach DSW yet.
    	if readyToUnmount {
    		// Ensure devices that should be detached/unmounted are detached/unmounted.
    		rc.unmountDetachDevices()
    
    		// Clean up any orphan volumes that failed reconstruction.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:23:12 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. src/syscall/syscall_plan9.go

    		w.Msg = ""
    	}
    	return
    }
    
    func Unmount(name, old string) (err error) {
    	if fixwd(name, old) {
    		defer runtime.UnlockOSThread()
    	}
    	oldp, err := BytePtrFromString(old)
    	if err != nil {
    		return err
    	}
    	oldptr := uintptr(unsafe.Pointer(oldp))
    
    	var r0 uintptr
    	var e ErrorString
    
    	// bind(2) man page: If name is zero, everything bound or mounted upon old is unbound or unmounted.
    	if name == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/cmd/phases/reset/cleanupnode.go

    		if err != nil {
    			klog.Warningf("[reset] Skipping unmount of directories in %q: %v\n",
    				kubeadmconstants.KubeletRunDirectory, err)
    		} else {
    			// Unmount all mount paths under kubeletRunDirectory.
    			fmt.Printf("[reset] Unmounting mounted directories in %q\n", kubeadmconstants.KubeletRunDirectory)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  4. pkg/volume/nfs/nfs.go

    			if !notMnt {
    				// This is very odd, we don't expect it.  We'll try again next sync loop.
    				klog.Errorf("%s is still mounted, despite call to unmount().  Will try again next sync loop.", dir)
    				return err
    			}
    		}
    		os.Remove(dir)
    		return err
    	}
    	return nil
    }
    
    var _ volume.Unmounter = &nfsUnmounter{}
    
    type nfsUnmounter struct {
    	*nfs
    }
    
    func (c *nfsUnmounter) TearDown() error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  5. releasenotes/notes/file-mounted-crl.yaml

    Rama Chavali <******@****.***> 1709540978 +0530
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 04 08:29:38 UTC 2024
    - 303 bytes
    - Viewed (0)
  6. pkg/volume/secret/secret.go

    	defer func() {
    		// Clean up directories if setup fails
    		if !setupSuccess {
    			unmounter, unmountCreateErr := b.plugin.NewUnmounter(b.volName, b.podUID)
    			if unmountCreateErr != nil {
    				klog.Errorf("error cleaning up mount %s after failure. Create unmounter failed with %v", b.volName, unmountCreateErr)
    				return
    			}
    			tearDownErr := unmounter.TearDown()
    			if tearDownErr != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  7. tests/integration/security/file_mounted_certs/p2p_mtls_test.go

    	// nolint: lll
    	ExpectedXfccHeader = `By=spiffe://cluster.local/ns/mounted-certs/sa/server;Hash=86948ccdaf2de73b20d389dc212aaf2d72f9f1ca239327cc2e8b05e61b1676d1;Subject="CN=client.mounted-certs.svc.cluster.local";URI=spiffe://cluster.local/ns/mounted-certs/sa/client;DNS=client.mounted-certs.svc`
    )
    
    func TestClientToServiceTls(t *testing.T) {
    	framework.NewTest(t).
    		Run(func(t framework.TestContext) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  8. docs/en/docs/tutorial/static-files.md

    This is different from using an `APIRouter` as a mounted application is completely independent. The OpenAPI and docs from your main application won't include anything from the mounted application, etc.
    
    You can read more about this in the [Advanced User Guide](../advanced/index.md){.internal-link target=_blank}.
    
    ## Details
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jan 11 19:56:09 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  9. pkg/volume/flexvolume/plugin.go

    	return plugin.newUnmounterInternal(volName, podUID, plugin.host.GetMounter(plugin.GetPluginName()), plugin.runner)
    }
    
    // newUnmounterInternal is the internal unmounter routine to clean the volume.
    func (plugin *flexVolumePlugin) newUnmounterInternal(volName string, podUID types.UID, mounter mount.Interface, runner exec.Interface) (volume.Unmounter, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  10. pkg/controller/volume/attachdetach/config/types.go

    	// wait between successive executions. Is set to 60 sec by default.
    	ReconcilerSyncLoopPeriod metav1.Duration
    	// DisableForceDetachOnTimeout disables force detach when the maximum unmount
    	// time is exceeded. Is false by default, and thus force detach on unmount is
    	// enabled.
    	DisableForceDetachOnTimeout bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 18:31:52 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top