Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for NewFakeMutatingDataSource (0.26 sec)

  1. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/mutating/plugin_test.go

    			wh, err := NewMutatingWebhook(nil)
    			if err != nil {
    				b.Errorf("failed to create mutating webhook: %v", err)
    				return
    			}
    
    			ns := "webhook-test"
    			client, informer := webhooktesting.NewFakeMutatingDataSource(ns, tt.Webhooks, stopCh)
    
    			wh.SetAuthenticationInfoResolverWrapper(webhooktesting.Wrapper(webhooktesting.NewAuthenticationInfoResolver(new(int32))))
    			wh.SetServiceResolver(webhooktesting.NewServiceResolver(*serverURL))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:52 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/testing/testcase.go

    	client := fakeclientset.NewSimpleClientset(objs...)
    	informerFactory := informers.NewSharedInformerFactory(client, 0)
    
    	return client, informerFactory
    }
    
    // NewFakeMutatingDataSource returns a mock client and informer returning the given webhooks.
    func NewFakeMutatingDataSource(name string, webhooks []registrationv1.MutatingWebhook, stopCh <-chan struct{}) (clientset kubernetes.Interface, factory informers.SharedInformerFactory) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 03 06:51:04 UTC 2023
    - 47.6K bytes
    - Viewed (0)
Back to top