Skip to content

Commit fc3b1b9

Browse files
committed
enable culling controller
1 parent 12fbd31 commit fc3b1b9

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

components/odh-notebook-controller/upgrade/suite_test.go

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -174,6 +174,13 @@ var _ = BeforeSuite(func() {
174174
}).SetupWithManager(mgr)
175175
Expect(err).ToNot(HaveOccurred())
176176

177+
err = (&controllers2.CullingReconciler{
178+
Client: mgr.GetClient(),
179+
Log: ctrl.Log.WithName("controllers").WithName("Culler"),
180+
Scheme: mgr.GetScheme(),
181+
}).SetupWithManager(mgr)
182+
Expect(err).ToNot(HaveOccurred())
183+
177184
// Setup ODH notebook controller
178185
err = (&controllers.OpenshiftNotebookReconciler{
179186
Client: mgr.GetClient(),

0 commit comments

Comments
 (0)