Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ReprocessPod (1.22 sec)

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

    	Run(sourcesReady config.SourcesReady, stopCh <-chan struct{})
    
    	// ReprocessPod sets value for the specified pod in processedPods
    	// to false, forcing it to be reprocessed. This is required to enable
    	// remounting volumes on pod updates (volumes like Downward API volumes
    	// depend on this behavior to ensure volume content is updated).
    	ReprocessPod(podName volumetypes.UniquePodName)
    
    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/volume_manager.go

    	// Remount plugins for which this is true. (Atomically updating volumes,
    	// like Downward API, depend on this to update the contents of the volume).
    	vm.desiredStateOfWorldPopulator.ReprocessPod(uniquePodName)
    
    	err := wait.PollUntilContextTimeout(
    		ctx,
    		podAttachAndMountRetryInterval,
    		podAttachAndMountTimeout,
    		true,
    		vm.verifyVolumesMountedFunc(uniquePodName, expectedVolumes))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  3. pkg/kubelet/volumemanager/populator/desired_state_of_world_populator_test.go

    	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) {
    		t.Fatalf("Failed to record that the volumes for the specified pod: %s have been processed by the populator", 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