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:
parent
cb06e64e03
commit
3fc4562e1b
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue