Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for createMutatingWebhookAccessor (0.17 sec)

  1. staging/src/k8s.io/apiserver/pkg/admission/configuration/mutating_webhook_manager.go

    	hasSynced           func() bool
    	lazy                synctrack.Lazy[[]webhook.WebhookAccessor]
    	configurationsCache sync.Map
    	// createMutatingWebhookAccessor is used to instantiate webhook accessors.
    	// This function is defined as field instead of a struct method to allow injection
    	// during tests
    	createMutatingWebhookAccessor mutatingWebhookAccessorCreator
    }
    
    var _ generic.Source = &mutatingWebhookConfigurationManager{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 13 22:43:12 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/admission/configuration/mutating_webhook_manager_test.go

    			managerStructPtr := manager.(*mutatingWebhookConfigurationManager)
    			fakeWebhookAccessorCreator := &mockCreateMutatingWebhookAccessor{}
    			managerStructPtr.createMutatingWebhookAccessor = fakeWebhookAccessorCreator.fn
    			informerFactory.Start(stop)
    			informerFactory.WaitForCacheSync(stop)
    
    			// Create webhooks
    			for _, configurations := range tt.args.createWebhookConfigurations {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 12 15:20:14 UTC 2023
    - 8.9K bytes
    - Viewed (0)
Back to top