Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for updateReconstructedFromNodeStatus (0.4 sec)

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

    		rc.unmountDetachDevices()
    
    		// Clean up any orphan volumes that failed reconstruction.
    		rc.cleanOrphanVolumes()
    	}
    
    	if len(rc.volumesNeedUpdateFromNodeStatus) != 0 {
    		rc.updateReconstructedFromNodeStatus()
    	}
    	if len(rc.volumesNeedUpdateFromNodeStatus) == 0 {
    		// ASW is fully populated only after both devicePaths and uncertain volume attach-ability
    		// were reconstructed from the API server.
    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.go

    	rc.volumesFailedReconstruction = make([]podVolume, 0)
    }
    
    // updateReconstructedFromNodeStatus tries to file devicePaths of reconstructed volumes from
    // node.Status.VolumesAttached. This can be done only after connection to the API
    // server is established, i.e. it can't be part of reconstructVolumes().
    func (rc *reconciler) updateReconstructedFromNodeStatus() {
    	klog.V(4).InfoS("Updating reconstructed devicePaths")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:23:12 UTC 2024
    - 8.9K bytes
    - Viewed (0)
Back to top