From 3fc4562e1b0ae3237accbfc124fdf2953fdae330 Mon Sep 17 00:00:00 2001 From: Shuting Zhao Date: Sun, 3 Jan 2021 00:14:27 -0800 Subject: [PATCH] set CRD controller to reconcile every 15 mins --- pkg/openapi/crdSync.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/openapi/crdSync.go b/pkg/openapi/crdSync.go index 3682586a33..0b6fdc04c6 100644 --- a/pkg/openapi/crdSync.go +++ b/pkg/openapi/crdSync.go @@ -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) } }