From b5aef69eaa6b3a80a3821c80fe3d219e623984ae Mon Sep 17 00:00:00 2001 From: Michal Szadkowski Date: Wed, 12 Jun 2024 15:53:22 +0200 Subject: [PATCH] Update kueue cmd to be able to pass custom multikueue controller --- cmd/kueue/main.go | 1 + 1 file changed, 1 insertion(+) diff --git a/cmd/kueue/main.go b/cmd/kueue/main.go index 2513e93bd1..f75b9d5b16 100644 --- a/cmd/kueue/main.go +++ b/cmd/kueue/main.go @@ -257,6 +257,7 @@ func setupControllers(mgr ctrl.Manager, cCache *cache.Cache, queues *queue.Manag multikueue.WithGCInterval(cfg.MultiKueue.GCInterval.Duration), multikueue.WithOrigin(ptr.Deref(cfg.MultiKueue.Origin, configapi.DefaultMultiKueueOrigin)), multikueue.WithWorkerLostTimeout(cfg.MultiKueue.WorkerLostTimeout.Duration), + // we need to add the Controller Name here ); err != nil { setupLog.Error(err, "Could not setup MultiKueue controller") os.Exit(1)