kubernetes/staging/src/k8s.io/apiserver/pkg/admission/configuration/validating_webhook_manager.go

type validatingWebhookAccessorCreator

type validatingWebhookConfigurationManager

var _

func NewValidatingWebhookConfigurationManager(f informers.SharedInformerFactory) generic.Source {}

// Webhooks returns the merged ValidatingWebhookConfiguration.
func (v *validatingWebhookConfigurationManager) Webhooks() []webhook.WebhookAccessor {}

// HasSynced returns true if the initial set of validating webhook configurations
// has been loaded.
func (v *validatingWebhookConfigurationManager) HasSynced() bool {}

func (v *validatingWebhookConfigurationManager) getConfiguration() ([]webhook.WebhookAccessor, error) {}

// getMutatingWebhookConfigurations returns the webhook accessors for a given list of
// mutating webhook configurations.
//
// This function will, first, try to load the webhook accessors from the cache and avoid
// recreating them, which can be expessive (requiring CEL expression recompilation).
func (v *validatingWebhookConfigurationManager) getValidatingWebhookConfigurations(configurations []*v1.ValidatingWebhookConfiguration) []webhook.WebhookAccessor {}

type ValidatingWebhookConfigurationSorter

func (a ValidatingWebhookConfigurationSorter) ByName(i, j int) bool {}