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

fix pull-descheduler-verify-master build error

This commit is contained in:
vlc刘诚
2022-09-24 09:08:06 +08:00
parent bfb688e016
commit ac0261fafb
7 changed files with 11 additions and 11 deletions

2
go.mod
View File

@@ -4,6 +4,7 @@ go 1.19
require ( require (
github.com/client9/misspell v0.3.4 github.com/client9/misspell v0.3.4
github.com/google/go-cmp v0.5.6
github.com/spf13/cobra v1.4.0 github.com/spf13/cobra v1.4.0
github.com/spf13/pflag v1.0.5 github.com/spf13/pflag v1.0.5
k8s.io/api v0.25.0 k8s.io/api v0.25.0
@@ -51,7 +52,6 @@ require (
github.com/golang/protobuf v1.5.2 // indirect github.com/golang/protobuf v1.5.2 // indirect
github.com/gomarkdown/markdown v0.0.0-20200824053859-8c8b3816f167 // indirect github.com/gomarkdown/markdown v0.0.0-20200824053859-8c8b3816f167 // indirect
github.com/google/gnostic v0.5.7-v3refs // indirect github.com/google/gnostic v0.5.7-v3refs // indirect
github.com/google/go-cmp v0.5.6 // indirect
github.com/google/gofuzz v1.1.0 // indirect github.com/google/gofuzz v1.1.0 // indirect
github.com/google/uuid v1.1.2 // indirect github.com/google/uuid v1.1.2 // indirect
github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0 // indirect github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0 // indirect

View File

@@ -27,16 +27,16 @@ func SetDefaults_DefaultEvictorArgs(obj *DefaultEvictorArgs) {
if obj.NodeSelector == "" { if obj.NodeSelector == "" {
obj.NodeSelector = "" obj.NodeSelector = ""
} }
if obj.EvictLocalStoragePods == false { if !obj.EvictLocalStoragePods {
obj.EvictSystemCriticalPods = false obj.EvictSystemCriticalPods = false
} }
if obj.EvictSystemCriticalPods == false { if !obj.EvictSystemCriticalPods {
obj.EvictSystemCriticalPods = false obj.EvictSystemCriticalPods = false
} }
if obj.IgnorePvcPods == false { if !obj.IgnorePvcPods {
obj.IgnorePvcPods = false obj.IgnorePvcPods = false
} }
if obj.EvictFailedBarePods == false { if !obj.EvictFailedBarePods {
obj.EvictFailedBarePods = false obj.EvictFailedBarePods = false
} }
if obj.LabelSelector == nil { if obj.LabelSelector == nil {
@@ -45,7 +45,7 @@ func SetDefaults_DefaultEvictorArgs(obj *DefaultEvictorArgs) {
if obj.PriorityThreshold == nil { if obj.PriorityThreshold == nil {
obj.PriorityThreshold = nil obj.PriorityThreshold = nil
} }
if obj.NodeFit == false { if !obj.NodeFit {
obj.NodeFit = false obj.NodeFit = false
} }
} }

View File

@@ -24,7 +24,7 @@ func addDefaultingFuncs(scheme *runtime.Scheme) error {
// SetDefaults_LowNodeUtilizationArgs // SetDefaults_LowNodeUtilizationArgs
// TODO: the final default values would be discussed in community // TODO: the final default values would be discussed in community
func SetDefaults_LowNodeUtilizationArgs(obj *LowNodeUtilizationArgs) { func SetDefaults_LowNodeUtilizationArgs(obj *LowNodeUtilizationArgs) {
if obj.UseDeviationThresholds == false { if !obj.UseDeviationThresholds {
obj.UseDeviationThresholds = false obj.UseDeviationThresholds = false
} }
if obj.Thresholds == nil { if obj.Thresholds == nil {

View File

@@ -39,7 +39,7 @@ func SetDefaults_RemoveFailedPodsArgs(obj *RemoveFailedPodsArgs) {
if obj.Reasons == nil { if obj.Reasons == nil {
obj.Reasons = nil obj.Reasons = nil
} }
if obj.IncludingInitContainers == false { if !obj.IncludingInitContainers {
obj.IncludingInitContainers = false obj.IncludingInitContainers = false
} }
} }

View File

@@ -33,7 +33,7 @@ func SetDefaults_RemovePodsHavingTooManyRestartsArgs(obj *RemovePodsHavingTooMan
if obj.PodRestartThreshold == 0 { if obj.PodRestartThreshold == 0 {
obj.PodRestartThreshold = 0 obj.PodRestartThreshold = 0
} }
if obj.IncludingInitContainers == false { if !obj.IncludingInitContainers {
obj.IncludingInitContainers = false obj.IncludingInitContainers = false
} }
} }

View File

@@ -30,7 +30,7 @@ func SetDefaults_RemovePodsViolatingNodeTaintsArgs(obj *RemovePodsViolatingNodeT
if obj.LabelSelector == nil { if obj.LabelSelector == nil {
obj.LabelSelector = nil obj.LabelSelector = nil
} }
if obj.IncludePreferNoSchedule == false { if !obj.IncludePreferNoSchedule {
obj.IncludePreferNoSchedule = false obj.IncludePreferNoSchedule = false
} }
if obj.ExcludedTaints == nil { if obj.ExcludedTaints == nil {

View File

@@ -30,7 +30,7 @@ func SetDefaults_RemovePodsViolatingTopologySpreadConstraintArgs(obj *RemovePods
if obj.LabelSelector == nil { if obj.LabelSelector == nil {
obj.LabelSelector = nil obj.LabelSelector = nil
} }
if obj.IncludeSoftConstraints == false { if !obj.IncludeSoftConstraints {
obj.IncludeSoftConstraints = false obj.IncludeSoftConstraints = false
} }
} }