// WithAPIs adds the handling for /apis and /apis/<group: -apiregistration.k8s.io>. func WithAPIs(handler http.Handler, informer informers.APIServiceInformer, serviceLister v1listers.ServiceLister, endpointsLister v1listers.EndpointsLister) http.Handler { apisHandler := &apisHandler{ lister: informer.Lister(), delegate: handler, serviceLister: serviceLister, endpointsLister: endpointsLister, } return http.HandlerFunc(func(w http.ResponseWriter, req *http.Request) { apisHandler.ServeHTTP(w, req) }) }
func NewAPIServiceRegistrationController(apiServerInformer informers.APIServiceInformer, apiHandlerManager APIHandlerManager) *APIServiceRegistrationController { c := &APIServiceRegistrationController{ apiHandlerManager: apiHandlerManager, apiServerLister: apiServerInformer.Lister(), queue: workqueue.NewNamedRateLimitingQueue(workqueue.DefaultControllerRateLimiter(), "APIServiceRegistrationController"), } apiServerInformer.Informer().AddEventHandler(cache.ResourceEventHandlerFuncs{ AddFunc: c.addAPIService, UpdateFunc: c.updateAPIService, DeleteFunc: c.deleteAPIService, }) c.syncFn = c.sync return c }