Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for MarkRemountRequired (0.19 sec)

  1. pkg/kubelet/volumemanager/cache/actual_state_of_world.go

    	AddPodToVolume(operationexecutor.MarkVolumeOpts) error
    
    	// MarkRemountRequired marks each volume that is successfully attached and
    	// mounted for the specified pod as requiring remount (if the plugin for the
    	// volume indicates it requires remounting on pod updates). Atomically
    	// updating volumes depend on this to update the contents of the volume on
    	// pod update.
    	MarkRemountRequired(podName volumetypes.UniquePodName)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 45.8K bytes
    - Viewed (0)
  2. pkg/kubelet/volumemanager/populator/desired_state_of_world_populator.go

    	if allVolumesAdded {
    		dswp.markPodProcessed(uniquePodName)
    		// New pod has been synced. Re-mount all volumes that need it
    		// (e.g. DownwardAPI)
    		dswp.actualStateOfWorld.MarkRemountRequired(uniquePodName)
    		// Remove any stored errors for the pod, everything went well in this processPodVolumes
    		dswp.desiredStateOfWorld.PopPodErrors(uniquePodName)
    	} else if dswp.podHasBeenSeenOnce(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)
  3. pkg/kubelet/volumemanager/reconciler/reconciler_test.go

    					tc.volumeName == volumetesting.SuccessAndTimeoutDeviceName {
    					// wait for mount and then break it via remount
    					waitForMount(t, fakePlugin, volumeName, asw)
    					asw.MarkRemountRequired(podName)
    					time.Sleep(reconcilerSyncWaitDuration)
    				}
    
    				if tc.deviceState == operationexecutor.DeviceMountUncertain {
    					waitForUncertainGlobalMount(t, volumeName, asw)
    				}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 75.4K bytes
    - Viewed (0)
Back to top