Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for podPreviouslyProcessed (0.3 sec)

  1. pkg/kubelet/volumemanager/populator/desired_state_of_world_populator.go

    	if !exist {
    		return "", false
    	}
    	return mountedVolume.VolumeName, true
    }
    
    // podPreviouslyProcessed returns true if the volumes for this pod have already
    // been processed/reprocessed by the populator. Otherwise, the volumes for this pod need to
    // be reprocessed.
    func (dswp *desiredStateOfWorldPopulator) podPreviouslyProcessed(
    	podName volumetypes.UniquePodName) bool {
    	dswp.pods.RLock()
    	defer dswp.pods.RUnlock()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  2. pkg/kubelet/volumemanager/populator/desired_state_of_world_populator_test.go

    	dswp.findAndAddNewPods()
    
    	if !dswp.podPreviouslyProcessed(podName) {
    		t.Fatalf("Failed to record that the volumes for the specified pod: %s have been processed by the populator", podName)
    	}
    	pluginPVOmittingClient(dswp)
    
    	dswp.ReprocessPod(podName)
    	dswp.findAndAddNewPods()
    
    	if !dswp.podPreviouslyProcessed(podName) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.4K bytes
    - Viewed (0)
Back to top