From 8659df84d77204e16196a4e440c22ea1ed87e19e Mon Sep 17 00:00:00 2001 From: LavredisG Date: Mon, 16 Dec 2024 13:35:12 +0200 Subject: [PATCH] Update interface.go Signed-off-by: LavredisG --- pkg/scheduler/framework/interface.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/scheduler/framework/interface.go b/pkg/scheduler/framework/interface.go index 674a55867..f625806ce 100644 --- a/pkg/scheduler/framework/interface.go +++ b/pkg/scheduler/framework/interface.go @@ -48,7 +48,7 @@ type Framework interface { // the given cluster. RunFilterPlugins(ctx context.Context, bindingSpec *workv1alpha2.ResourceBindingSpec, bindingStatus *workv1alpha2.ResourceBindingStatus, cluster *clusterv1alpha1.Cluster) *Result - // RunScorePlugins runs the set of configured Score plugins, it returns a map of plugin name to cores + // RunScorePlugins runs the set of configured Score plugins, it returns a map of plugin names to scores RunScorePlugins(ctx context.Context, spec *workv1alpha2.ResourceBindingSpec, clusters []*clusterv1alpha1.Cluster) (PluginToClusterScores, *Result) }