Merge pull request #5957 from LavredisG/patch-6

Update interface.go
This commit is contained in:
karmada-bot 2024-12-17 14:23:19 +08:00 committed by GitHub
commit 8d89d77110
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)
}