Update interface.go

Signed-off-by: LavredisG <lavredisgoume@gmail.com>
This commit is contained in:
LavredisG 2024-12-16 13:35:12 +02:00 committed by GitHub
parent 5fbcf9b893
commit 8659df84d7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -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)
}