@@ -68,7 +68,7 @@ func (p *Provider) initKnownAdapters() {
6868 })
6969
7070 if p .mrc != nil {
71- p .mrc .Register (mlw )
71+ p .mrc .Register (mlw , "galley-service" )
7272 }
7373
7474 informer := cache .NewSharedIndexInformer (mlw , & v1.Service {}, p .resyncPeriod ,
@@ -177,7 +177,7 @@ func (p *Provider) initKnownAdapters() {
177177 })
178178
179179 if p .mrc != nil {
180- p .mrc .Register (mlw )
180+ p .mrc .Register (mlw , "galley-pods" )
181181 }
182182
183183 informer := cache .NewSharedIndexInformer (mlw , & v1.Pod {}, p .resyncPeriod ,
@@ -226,7 +226,7 @@ func (p *Provider) initKnownAdapters() {
226226 })
227227
228228 if p .mrc != nil {
229- p .mrc .Register (mlw )
229+ p .mrc .Register (mlw , "galley-secrets" )
230230 }
231231
232232 informer := cache .NewSharedIndexInformer (mlw , & v1.Secret {}, p .resyncPeriod ,
@@ -274,7 +274,7 @@ func (p *Provider) initKnownAdapters() {
274274 })
275275
276276 if p .mrc != nil {
277- p .mrc .Register (mlw )
277+ p .mrc .Register (mlw , "galley-endpoints" )
278278 }
279279
280280 informer := cache .NewSharedIndexInformer (mlw , & v1.Endpoints {}, p .resyncPeriod ,
@@ -334,7 +334,7 @@ func (p *Provider) initKnownAdapters() {
334334 })
335335
336336 if p .mrc != nil {
337- p .mrc .Register (mlw )
337+ p .mrc .Register (mlw , "galley-ingresses" )
338338 }
339339
340340 informer := cache .NewSharedIndexInformer (mlw , & v1beta1.Ingress {}, p .resyncPeriod ,
@@ -421,7 +421,7 @@ func (p *Provider) initKnownAdapters() {
421421 })
422422
423423 if p .mrc != nil {
424- p .mrc .Register (mlw )
424+ p .mrc .Register (mlw , "galley-deployments" )
425425 }
426426
427427 informer := cache .NewSharedIndexInformer (mlw , & appsv1.Deployment {}, p .resyncPeriod ,
@@ -468,7 +468,7 @@ func (p *Provider) initKnownAdapters() {
468468 })
469469
470470 if p .mrc != nil {
471- p .mrc .Register (mlw )
471+ p .mrc .Register (mlw , "galley-configmaps" )
472472 }
473473
474474 informer := cache .NewSharedIndexInformer (mlw , & v1.ConfigMap {}, p .resyncPeriod ,
0 commit comments