Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for DefaultTypedControllerRateLimiter (0.47 sec)

  1. pkg/controller/daemon/daemon_controller.go

    			KubeClient: kubeClient,
    		},
    		burstReplicas: BurstReplicas,
    		expectations:  controller.NewControllerExpectations(),
    		queue: workqueue.NewTypedRateLimitingQueueWithConfig(
    			workqueue.DefaultTypedControllerRateLimiter[string](),
    			workqueue.TypedRateLimitingQueueConfig[string]{
    				Name: "daemonset",
    			},
    		),
    	}
    
    	daemonSetInformer.Informer().AddEventHandler(cache.ResourceEventHandlerFuncs{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  2. pkg/controller/cronjob/cronjob_controllerv2_test.go

    				return
    			}
    			jm.now = justASecondBeforeTheHour
    			queue := &fakeQueue{TypedRateLimitingInterface: workqueue.NewTypedRateLimitingQueueWithConfig(
    				workqueue.DefaultTypedControllerRateLimiter[string](),
    				workqueue.TypedRateLimitingQueueConfig[string]{
    					Name: "test-update-cronjob",
    				},
    			)}
    			jm.queue = queue
    			jm.jobControl = &fakeJobControl{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 70.8K bytes
    - Viewed (0)
  3. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    		nodeUpdateQueue:             workqueue.NewTypedWithConfig(workqueue.TypedQueueConfig[string]{Name: "node_lifecycle_controller"}),
    		podUpdateQueue: workqueue.NewTypedRateLimitingQueueWithConfig(
    			workqueue.DefaultTypedControllerRateLimiter[podUpdateItem](),
    			workqueue.TypedRateLimitingQueueConfig[podUpdateItem]{
    				Name: "node_lifecycle_controller_pods",
    			},
    		),
    	}
    
    	nc.enterPartialDisruptionFunc = nc.ReducedQPSFunc
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
Back to top