1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2025-03-31 03:45:17 +00:00

set CRD controller to reconcile every 15 mins

This commit is contained in:
Shuting Zhao 2021-01-03 00:14:27 -08:00
parent cb06e64e03
commit 3fc4562e1b

View file

@ -78,7 +78,7 @@ func (c *crdSync) Run(workers int, stopCh <-chan struct{}) {
c.sync()
for i := 0; i < workers; i++ {
go wait.Until(c.sync, time.Second, stopCh)
go wait.Until(c.sync, 15*time.Minute, stopCh)
}
}