Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for NewDesiredStateOfWorldPopulator (0.32 sec)

  1. pkg/controller/volume/attachdetach/populator/desired_state_of_world_populator.go

    // each one exists in the desired state of the world cache
    // if it has volumes.
    type DesiredStateOfWorldPopulator interface {
    	Run(ctx context.Context)
    }
    
    // NewDesiredStateOfWorldPopulator returns a new instance of DesiredStateOfWorldPopulator.
    // loopSleepDuration - the amount of time the populator loop sleeps between
    // successive executions
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:37:30 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  2. pkg/kubelet/volumemanager/populator/desired_state_of_world_populator.go

    // See pkg/k8s.io/kubernetes/pkg/kubelet/pod.Manager for method godoc.
    type PodManager interface {
    	GetPodByUID(types.UID) (*v1.Pod, bool)
    	GetPods() []*v1.Pod
    }
    
    // NewDesiredStateOfWorldPopulator returns a new instance of
    // DesiredStateOfWorldPopulator.
    //
    // kubeClient - used to fetch PV and PVC objects from the API server
    // loopSleepDuration - the amount of time the populator loop sleeps between
    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/volume_manager.go

    	vm.intreeToCSITranslator = intreeToCSITranslator
    	vm.csiMigratedPluginManager = csiMigratedPluginManager
    	vm.desiredStateOfWorldPopulator = populator.NewDesiredStateOfWorldPopulator(
    		kubeClient,
    		desiredStateOfWorldPopulatorLoopSleepPeriod,
    		podManager,
    		podStateProvider,
    		vm.desiredStateOfWorld,
    		vm.actualStateOfWorld,
    		kubeContainerRuntime,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  4. pkg/controller/volume/attachdetach/attach_detach_controller.go

    	adc.intreeToCSITranslator = csiTranslator
    	adc.csiMigratedPluginManager = csimigration.NewPluginManager(csiTranslator, utilfeature.DefaultFeatureGate)
    
    	adc.desiredStateOfWorldPopulator = populator.NewDesiredStateOfWorldPopulator(
    		timerConfig.DesiredStateOfWorldPopulatorLoopSleepPeriod,
    		timerConfig.DesiredStateOfWorldPopulatorListPodsRetryDuration,
    		podInformer.Lister(),
    		adc.desiredStateOfWorld,
    		&adc.volumePluginMgr,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.6K bytes
    - Viewed (0)
Back to top