1
0
mirror of https://github.com/kubernetes-sigs/descheduler.git synced 2026-01-26 13:29:11 +01:00

removing dupe plugin interface check

This commit is contained in:
Julian Lawrence
2022-08-24 16:12:24 -07:00
parent 70df89601a
commit bfcd310a16
9 changed files with 7 additions and 17 deletions

View File

@@ -34,10 +34,7 @@ import (
const PluginName = "PodLifeTime"
var (
_ framework.Plugin = &PodLifeTime{}
_ framework.DeschedulePlugin = &PodLifeTime{}
)
var _ framework.DeschedulePlugin = &PodLifeTime{}
// PodLifeTime evicts pods on the node that violate the max pod lifetime threshold
type PodLifeTime struct {