Extract single place to set up indexers (#3454)

This commit is contained in:
Nikola Jokic
2024-05-17 14:42:46 +02:00
committed by GitHub
parent 9b51f25800
commit fa7a4f584e
9 changed files with 82 additions and 70 deletions

View File

@@ -18,6 +18,9 @@ const defaultGitHubToken = "gh_token"
func startManagers(t ginkgo.GinkgoTInterface, first manager.Manager, others ...manager.Manager) {
for _, mgr := range append([]manager.Manager{first}, others...) {
if err := SetupIndexers(mgr); err != nil {
t.Fatalf("failed to setup indexers: %v", err)
}
ctx, cancel := context.WithCancel(context.Background())
g, ctx := errgroup.WithContext(ctx)