Merge pull request #103951 from sdmodi/startinformer

Start the informerFactory in the ControllerContext
This commit is contained in:
Kubernetes Prow Robot 2021-07-29 17:37:37 -07:00 committed by GitHub
commit 7e78af445a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -294,6 +294,7 @@ func startControllers(cloud cloudprovider.Interface, ctx genericcontrollermanage
}
c.SharedInformers.Start(stopCh)
ctx.InformerFactory.Start(ctx.Stop)
select {}
}