Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 36 of 36 for unmountdevice (0.37 sec)

  1. CHANGELOG/CHANGELOG-1.12.md

    * Add fallbacks to ARM API when getting empty node IP from Azure IMDS ([#69077](https://github.com/kubernetes/kubernetes/pull/69077), [@feiskyer](https://github.com/feiskyer))
    * fix UnmountDevice failure on Windows ([#68608](https://github.com/kubernetes/kubernetes/pull/68608), [@andyzhangx](https://github.com/andyzhangx))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 06 06:04:15 UTC 2020
    - 293.8K bytes
    - Viewed (0)
  2. pkg/volume/fc/fc.go

    	if err != nil {
    		klog.Errorf("fc: failed to setup")
    	}
    
    	if utilfeature.DefaultFeatureGate.Enabled(features.SELinuxMountReadWriteOncePod) {
    		// The volume must have been mounted in MountDevice with -o context.
    		b.mountedWithSELinuxContext = mounterArgs.SELinuxLabel != ""
    	}
    	return err
    }
    
    type fcDiskUnmounter struct {
    	*fcDisk
    	mounter    mount.Interface
    	deviceUtil util.DeviceUtil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.9.md

    ### Other notable changes
    
    * Add fallbacks to ARM API when getting empty node IP from Azure IMDS ([#69077](https://github.com/kubernetes/kubernetes/pull/69077), [@feiskyer](https://github.com/feiskyer))
    * fix UnmountDevice failure on Windows ([#68608](https://github.com/kubernetes/kubernetes/pull/68608), [@andyzhangx](https://github.com/andyzhangx))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 16 10:46:27 UTC 2021
    - 313.7K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.11.md

        * the loop to correctly handle acquiring the write lock with deferred
        * unlock to run at that function's completion, following the normal
        * golang lock/deferred-unlock pattern.
    * fix UnmountDevice failure on Windows ([#68608](https://github.com/kubernetes/kubernetes/pull/68608), [@andyzhangx](https://github.com/andyzhangx))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 06 06:04:15 UTC 2020
    - 328.4K bytes
    - Viewed (0)
  5. pkg/volume/iscsi/iscsi.go

    	if err != nil {
    		klog.Errorf("iscsi: failed to setup")
    	}
    
    	if utilfeature.DefaultFeatureGate.Enabled(features.SELinuxMountReadWriteOncePod) {
    		// The volume must have been mounted in MountDevice with -o context.
    		// TODO: extract from mount table in GetAttributes() to be sure?
    		b.mountedWithSELinuxContext = mounterArgs.SELinuxLabel != ""
    	}
    	return err
    }
    
    type iscsiDiskUnmounter struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  6. pkg/volume/csi/csi_plugin.go

    		if err != nil && volumetypes.IsOperationFinishedError(err) {
    			// attempt to cleanup volume mount dir.
    			if err = removeMountDir(p, dataDir); err != nil {
    				klog.Error(log("attacher.MountDevice failed to remove mount dir after error [%s]: %v", dataDir, err))
    			}
    		}
    	}()
    	if err != nil {
    		errorMsg := log("csi.NewBlockVolumeMapper failed to save volume info data: %v", err)
    		klog.Error(errorMsg)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 29.2K bytes
    - Viewed (0)
Back to top