From 0a1b132ed094a6f82e40cbdca26b597363299c7c Mon Sep 17 00:00:00 2001 From: Rus K Date: Tue, 24 Sep 2024 00:21:54 +1000 Subject: [PATCH] Fix every minute reconsoliation in case of succesfull import --- cmd/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/main.go b/cmd/main.go index ef24444..df318e0 100644 --- a/cmd/main.go +++ b/cmd/main.go @@ -139,7 +139,7 @@ func (r *SecretSyncer) Reconcile(ctx context.Context, req ctrl.Request) (result // Handle other backends } - return ctrl.Result{RequeueAfter: time.Minute}, nil + return ctrl.Result{}, nil } func (r *SecretSyncer) ingressesGetByLabels(ctx context.Context, labelSet map[string]string) (*networkingv1.IngressList, error) {