1
0
Fork 0
mirror of https://github.com/kubernetes-sigs/node-feature-discovery.git synced 2025-03-13 20:30:03 +00:00

Merge pull request #1123 from marquiz/devel/master-resync

nfd-master: increase controller resync period to 1 hour
This commit is contained in:
Kubernetes Prow Robot 2023-04-12 08:00:32 -07:00 committed by GitHub
commit e75be0b257
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -50,7 +50,7 @@ func newNfdController(config *restclient.Config, disableNodeFeature bool) (*nfdC
nfdClient := nfdclientset.NewForConfigOrDie(config)
informerFactory := nfdinformers.NewSharedInformerFactory(nfdClient, 5*time.Minute)
informerFactory := nfdinformers.NewSharedInformerFactory(nfdClient, 1*time.Hour)
// Add informer for NodeFeature objects
if !disableNodeFeature {