Merge pull request #89904 from alculquicondor/raw-extension-plugin-args

Use RawExtension and Object for external and internal, respectively, scheduling plugin args
This commit is contained in:
Kubernetes Prow Robot
2020-04-15 15:22:59 -07:00
committed by GitHub
45 changed files with 148 additions and 111 deletions

View File

@@ -128,7 +128,7 @@ func (rl *ResourceLimits) ScoreExtensions() framework.ScoreExtensions {
}
// NewResourceLimits initializes a new plugin and returns it.
func NewResourceLimits(_ *runtime.Unknown, h framework.FrameworkHandle) (framework.Plugin, error) {
func NewResourceLimits(_ runtime.Object, h framework.FrameworkHandle) (framework.Plugin, error) {
return &ResourceLimits{handle: h}, nil
}