Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 111 for NewSharedInformerFactory (0.45 sec)

  1. pkg/scheduler/framework/plugins/podtopologyspread/scoring_test.go

    		},
    	}
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    			_, ctx := ktesting.NewTestContext(t)
    			ctx, cancel := context.WithCancel(ctx)
    			defer cancel()
    			informerFactory := informers.NewSharedInformerFactory(fake.NewSimpleClientset(tt.objs...), 0)
    			f, err := frameworkruntime.NewFramework(ctx, nil, nil,
    				frameworkruntime.WithSnapshotSharedLister(cache.NewSnapshot(nil, tt.nodes)),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 60K bytes
    - Viewed (0)
  2. pkg/controller/resourcequota/resource_quota_controller_test.go

    }
    
    func setupQuotaController(t *testing.T, kubeClient kubernetes.Interface, lister quota.ListerForResourceFunc, discoveryFunc NamespacedResourcesFunc) quotaController {
    	informerFactory := informers.NewSharedInformerFactory(kubeClient, controller.NoResyncPeriodFunc())
    	quotaConfiguration := install.NewQuotaConfigurationForControllers(lister)
    	alwaysStarted := make(chan struct{})
    	close(alwaysStarted)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 12 16:29:33 UTC 2023
    - 42.6K bytes
    - Viewed (0)
  3. pkg/controller/statefulset/stateful_set_test.go

    	client := fake.NewSimpleClientset(initialObjects...)
    	informerFactory := informers.NewSharedInformerFactory(client, controller.NoResyncPeriodFunc())
    	om := newFakeObjectManager(informerFactory)
    	spc := NewStatefulPodControlFromManager(om, &noopRecorder{})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  4. pkg/controller/deployment/util/deployment_util_test.go

    				t.Errorf("case[%d]:%s Expected %v, Got: %v", i, test.name, test.expected, result)
    			}
    		})
    	}
    }
    
    func TestGetDeploymentsForReplicaSet(t *testing.T) {
    	fakeInformerFactory := informers.NewSharedInformerFactory(&fake.Clientset{}, 0*time.Second)
    	var deployments []*apps.Deployment
    	for i := 0; i < 3; i++ {
    		deployment := &apps.Deployment{
    			ObjectMeta: metav1.ObjectMeta{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 08 09:10:50 UTC 2023
    - 37.1K bytes
    - Viewed (0)
  5. pkg/controller/deployment/deployment_controller_test.go

    	return f
    }
    
    func (f *fixture) newController(ctx context.Context) (*DeploymentController, informers.SharedInformerFactory, error) {
    	f.client = fake.NewSimpleClientset(f.objects...)
    	informers := informers.NewSharedInformerFactory(f.client, controller.NoResyncPeriodFunc())
    	c, err := NewDeploymentController(ctx, informers.Apps().V1().Deployments(), informers.Apps().V1().ReplicaSets(), informers.Core().V1().Pods(), f.client)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  6. pkg/controller/job/job_controller_test.go

    	t.Helper()
    	sharedInformers := informers.NewSharedInformerFactory(kubeClient, resyncPeriod())
    	jm, err := newControllerWithClock(ctx, sharedInformers.Core().V1().Pods(), sharedInformers.Batch().V1().Jobs(), kubeClient, clock)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  7. pkg/controller/volume/persistentvolume/framework_test.go

    	if informerFactory == nil {
    		informerFactory = informers.NewSharedInformerFactory(kubeClient, controller.NoResyncPeriodFunc())
    	}
    	params := ControllerParameters{
    		KubeClient:                kubeClient,
    		SyncPeriod:                5 * time.Second,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 09:54:00 UTC 2023
    - 38.3K bytes
    - Viewed (0)
  8. pkg/controller/volume/persistentvolume/pv_controller_test.go

    		client.PrependWatchReactor("nodes", core.DefaultWatchReactor(watch.NewFake(), nil))
    		client.PrependWatchReactor("pods", core.DefaultWatchReactor(watch.NewFake(), nil))
    
    		informers := informers.NewSharedInformerFactory(client, controller.NoResyncPeriodFunc())
    		ctrl, err := newTestController(ctx, client, informers, true)
    		if err != nil {
    			t.Fatalf("Test %q construct persistent volume failed: %v", test.name, err)
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  9. plugin/pkg/admission/limitranger/admission_test.go

    	})
    	return mockClient
    }
    
    // newHandlerForTest returns a handler configured for testing.
    func newHandlerForTest(c clientset.Interface) (*LimitRanger, informers.SharedInformerFactory, error) {
    	f := informers.NewSharedInformerFactory(c, 5*time.Minute)
    	handler, err := NewLimitRanger(&DefaultLimitRangerActions{})
    	if err != nil {
    		return nil, f, err
    	}
    	pluginInitializer := genericadmissioninitializer.New(c, nil, f, nil, nil, nil, nil)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  10. pkg/controller/endpoint/endpoints_controller_test.go

    	client := clientset.NewForConfigOrDie(&restclient.Config{Host: url, ContentConfig: restclient.ContentConfig{GroupVersion: &schema.GroupVersion{Group: "", Version: "v1"}}})
    	informerFactory := informers.NewSharedInformerFactory(client, controllerpkg.NoResyncPeriodFunc())
    	endpoints := NewEndpointController(ctx, informerFactory.Core().V1().Pods(), informerFactory.Core().V1().Services(),
    		informerFactory.Core().V1().Endpoints(), client, batchPeriod)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 87.7K bytes
    - Viewed (0)
Back to top