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

Drop deprecated flags

This commit is contained in:
Jan Chaloupka
2021-11-29 12:18:31 +01:00
parent 5cf381a817
commit 73a7adf572
21 changed files with 129 additions and 186 deletions

View File

@@ -59,7 +59,7 @@ func (in *DeschedulerPolicy) DeepCopyInto(out *DeschedulerPolicy) {
}
if in.MaxNoOfPodsToEvictPerNode != nil {
in, out := &in.MaxNoOfPodsToEvictPerNode, &out.MaxNoOfPodsToEvictPerNode
*out = new(int)
*out = new(uint)
**out = **in
}
return