Skip to content

Commit

Permalink
enable culling controller
Browse files Browse the repository at this point in the history
  • Loading branch information
jiridanek committed Nov 24, 2024
1 parent 12fbd31 commit fc3b1b9
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions components/odh-notebook-controller/upgrade/suite_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,13 @@ var _ = BeforeSuite(func() {
}).SetupWithManager(mgr)
Expect(err).ToNot(HaveOccurred())

err = (&controllers2.CullingReconciler{
Client: mgr.GetClient(),
Log: ctrl.Log.WithName("controllers").WithName("Culler"),
Scheme: mgr.GetScheme(),
}).SetupWithManager(mgr)
Expect(err).ToNot(HaveOccurred())

// Setup ODH notebook controller
err = (&controllers.OpenshiftNotebookReconciler{
Client: mgr.GetClient(),
Expand Down

0 comments on commit fc3b1b9

Please sign in to comment.