Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for mountOrAttachVolumes (0.18 sec)

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

    	// attach if kubelet is responsible for attaching volumes.
    	// If underlying PVC was resized while in-use then this function also handles volume
    	// 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 {
    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. pkg/kubelet/volumemanager/reconciler/reconstruct_common.go

    		podName:    volume.podName,
    		volumeSpec: volumeSpec,
    		// volume.volumeSpecName is actually InnerVolumeSpecName. It will not be used
    		// for volume cleanup.
    		// in case reconciler calls mountOrAttachVolumes, outerVolumeSpecName will
    		// be updated from dsw information in ASW.MarkVolumeAsMounted().
    		outerVolumeSpecName: volume.volumeSpecName,
    		pod:                 pod,
    		deviceMounter:       deviceMounter,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  3. pkg/kubelet/volumemanager/reconciler/reconciler_common.go

    			}
    			if err == nil {
    				klog.InfoS(mountedVolume.GenerateMsgDetailed("operationExecutor.UnmountVolume started", ""))
    			}
    		}
    	}
    }
    
    func (rc *reconciler) mountOrAttachVolumes() {
    	// Ensure volumes that should be attached/mounted are attached/mounted.
    	for _, volumeToMount := range rc.desiredStateOfWorld.GetVolumesToMount() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:23:12 UTC 2024
    - 14.8K bytes
    - Viewed (0)
Back to top