Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 111 for NewSharedInformerFactory (0.39 sec)

  1. pkg/controller/disruption/disruption_test.go

    func newFakeDisruptionControllerWithTime(ctx context.Context, now time.Time) (*disruptionController, *pdbStates) {
    	ps := &pdbStates{}
    
    	coreClient := fake.NewSimpleClientset()
    	informerFactory := informers.NewSharedInformerFactory(coreClient, controller.NoResyncPeriodFunc())
    
    	scheme := runtime.NewScheme()
    	scheme.AddKnownTypeWithName(customGVK, &v1.Service{})
    	fakeScaleClient := &scalefake.FakeScaleClient{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 50K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources_test.go

    	tc.client.PrependReactor("list", "resourceclassparameters", createListReactor(tc.client.Tracker(), "ResourceClassParameters"))
    
    	tc.informerFactory = informers.NewSharedInformerFactory(tc.client, 0)
    
    	opts := []runtime.Option{
    		runtime.WithClientSet(tc.client),
    		runtime.WithInformerFactory(tc.informerFactory),
    	}
    	fh, err := runtime.NewFramework(tCtx, nil, nil, opts...)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/filters/priority-and-fairness_test.go

    	clientset := newClientset(t, apfConfiguration...)
    	// this test does not rely on resync, so resync period is set to zero
    	factory := informers.NewSharedInformerFactory(clientset, 0)
    	controller := utilflowcontrol.New(factory, clientset.FlowcontrolV1(), serverConcurrency)
    
    	factory.Start(stopCh)
    
    	// wait for the informer cache to sync.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  4. pkg/controller/podautoscaler/replica_calculator_test.go

    	metricsClient := metricsclient.NewRESTMetricsClient(testMetricsClient.MetricsV1beta1(), testCMClient, testEMClient)
    
    	informerFactory := informers.NewSharedInformerFactory(testClient, controller.NoResyncPeriodFunc())
    	informer := informerFactory.Core().V1().Pods()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Aug 19 03:31:34 UTC 2023
    - 68.4K bytes
    - Viewed (0)
  5. pkg/controller/daemon/daemon_controller_test.go

    func newTestController(ctx context.Context, initialObjects ...runtime.Object) (*daemonSetsController, *fakePodControl, *fake.Clientset, error) {
    	clientset := fake.NewSimpleClientset(initialObjects...)
    	informerFactory := informers.NewSharedInformerFactory(clientset, controller.NoResyncPeriodFunc())
    
    	dsc, err := NewDaemonSetsController(
    		ctx,
    		informerFactory.Apps().V1().DaemonSets(),
    		informerFactory.Apps().V1().ControllerRevisions(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  6. pkg/controller/statefulset/stateful_set_control_test.go

    func setupController(client clientset.Interface) (*fakeObjectManager, *fakeStatefulSetStatusUpdater, StatefulSetControlInterface) {
    	informerFactory := informers.NewSharedInformerFactory(client, controller.NoResyncPeriodFunc())
    	om := newFakeObjectManager(informerFactory)
    	spc := NewStatefulPodControlFromManager(om, &noopRecorder{})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 19:01:47 UTC 2024
    - 108.7K bytes
    - Viewed (0)
  7. pkg/controller/endpointslice/endpointslice_controller_test.go

    }
    
    func newController(t *testing.T, nodeNames []string, batchPeriod time.Duration) (*fake.Clientset, *endpointSliceController) {
    	client := fake.NewSimpleClientset()
    
    	informerFactory := informers.NewSharedInformerFactory(client, controller.NoResyncPeriodFunc())
    	nodeInformer := informerFactory.Core().V1().Nodes()
    	indexer := nodeInformer.Informer().GetIndexer()
    	for _, nodeName := range nodeNames {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/volumebinding/binder_test.go

    		ns := action.GetNamespace()
    		watch, err := reactor.Watch(gvr, ns)
    		if err != nil {
    			return false, nil, err
    		}
    		return true, watch, nil
    	})
    	informerFactory := informers.NewSharedInformerFactory(client, controller.NoResyncPeriodFunc())
    
    	podInformer := informerFactory.Core().V1().Pods()
    	nodeInformer := informerFactory.Core().V1().Nodes()
    	csiNodeInformer := informerFactory.Storage().V1().CSINodes()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  9. pkg/controller/podautoscaler/horizontal_test.go

    			default:
    				assert.False(t, true, fmt.Sprintf("Unexpected event: %s / %s", obj.Reason, obj.Message))
    			}
    		}
    		tc.eventCreated = true
    		return true, obj, nil
    	})
    
    	informerFactory := informers.NewSharedInformerFactory(testClient, controller.NoResyncPeriodFunc())
    	defaultDownscalestabilizationWindow := 5 * time.Minute
    
    	tCtx := ktesting.Init(t)
    	hpaController := NewHorizontalController(
    		tCtx,
    		eventClient.CoreV1(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
  10. pkg/controller/nodelifecycle/node_lifecycle_controller_test.go

    	unhealthyZoneThreshold float32,
    	nodeMonitorGracePeriod time.Duration,
    	nodeStartupGracePeriod time.Duration,
    	nodeMonitorPeriod time.Duration,
    ) (*nodeLifecycleController, error) {
    
    	factory := informers.NewSharedInformerFactory(kubeClient, controller.NoResyncPeriodFunc())
    
    	leaseInformer := factory.Coordination().V1().Leases()
    	nodeInformer := factory.Core().V1().Nodes()
    	daemonSetInformer := factory.Apps().V1().DaemonSets()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 03:26:45 UTC 2024
    - 119K bytes
    - Viewed (0)
Back to top