diff --git a/internal/utils/utils.go b/internal/utils/utils.go
index c8bdb657833fe15dc0284c0f5da76679a2616c9a..3e949c8bad2baca161cc55072c4fdefc9ebce790 100644
--- a/internal/utils/utils.go
+++ b/internal/utils/utils.go
@@ -156,6 +156,10 @@ func KubeConfig(kubeConfigPath string, kubeContext string) (*rest.Config, error)
 		return nil, fmt.Errorf("kubernetes configuration load failed: %w", err)
 	}
 
+	// avoid throttling request when some Flux CRDs are not registered
+	cfg.QPS = 50
+	cfg.Burst = 100
+
 	return cfg, nil
 }