We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 05e245f + 9ebd872 commit f4e2cf7Copy full SHA for f4e2cf7
pkg/scheduler/framework/plugins/defaultpodtopologyspread/default_pod_topology_spread.go
@@ -33,6 +33,7 @@ type DefaultPodTopologySpread struct {
33
handle framework.FrameworkHandle
34
}
35
36
+var _ framework.PreScorePlugin = &DefaultPodTopologySpread{}
37
var _ framework.ScorePlugin = &DefaultPodTopologySpread{}
38
39
const (
pkg/scheduler/framework/plugins/nodeports/node_ports.go
@@ -28,6 +28,7 @@ import (
28
// NodePorts is a plugin that checks if a node has free ports for the requested pod ports.
29
type NodePorts struct{}
30
31
+var _ framework.PreFilterPlugin = &NodePorts{}
32
var _ framework.FilterPlugin = &NodePorts{}
0 commit comments