Merge pull request #91598 from Huang-Wei/podtopologyspread-ga
Remove `EvenPodsSpread` featuregate and related logic Kubernetes-commit: 2dc7b68b83d974deee5bcbdd913caae615fc61e4
This commit is contained in:
commit
09cb74c0f9
|
|
@ -668,7 +668,7 @@
|
|||
},
|
||||
{
|
||||
"ImportPath": "k8s.io/api",
|
||||
"Rev": "afb0842feaf5"
|
||||
"Rev": "ce9b16fa078e"
|
||||
},
|
||||
{
|
||||
"ImportPath": "k8s.io/apimachinery",
|
||||
|
|
|
|||
4
go.mod
4
go.mod
|
|
@ -42,7 +42,7 @@ require (
|
|||
gopkg.in/natefinch/lumberjack.v2 v2.0.0
|
||||
gopkg.in/square/go-jose.v2 v2.2.2
|
||||
gopkg.in/yaml.v2 v2.2.8
|
||||
k8s.io/api v0.0.0-20200603011159-afb0842feaf5
|
||||
k8s.io/api v0.0.0-20200616091050-ce9b16fa078e
|
||||
k8s.io/apimachinery v0.0.0-20200601184421-76330795f827
|
||||
k8s.io/client-go v0.0.0-20200603035352-be97aaa976ad
|
||||
k8s.io/component-base v0.0.0-20200529003043-ee971924d913
|
||||
|
|
@ -57,7 +57,7 @@ require (
|
|||
replace (
|
||||
golang.org/x/sys => golang.org/x/sys v0.0.0-20190813064441-fde4db37ae7a // pinned to release-branch.go1.13
|
||||
golang.org/x/tools => golang.org/x/tools v0.0.0-20190821162956-65e3620a7ae7 // pinned to release-branch.go1.13
|
||||
k8s.io/api => k8s.io/api v0.0.0-20200603011159-afb0842feaf5
|
||||
k8s.io/api => k8s.io/api v0.0.0-20200616091050-ce9b16fa078e
|
||||
k8s.io/apimachinery => k8s.io/apimachinery v0.0.0-20200601184421-76330795f827
|
||||
k8s.io/client-go => k8s.io/client-go v0.0.0-20200603035352-be97aaa976ad
|
||||
k8s.io/component-base => k8s.io/component-base v0.0.0-20200529003043-ee971924d913
|
||||
|
|
|
|||
2
go.sum
2
go.sum
|
|
@ -447,7 +447,7 @@ honnef.co/go/tools v0.0.0-20190106161140-3f1c8253044a/go.mod h1:rf3lG4BRIbNafJWh
|
|||
honnef.co/go/tools v0.0.0-20190418001031-e561f6794a2a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4=
|
||||
honnef.co/go/tools v0.0.0-20190523083050-ea95bdfd59fc/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4=
|
||||
honnef.co/go/tools v0.0.1-2019.2.3/go.mod h1:a3bituU0lyd329TUQxRnasdCoJDkEUEAqEt0JzvZhAg=
|
||||
k8s.io/api v0.0.0-20200603011159-afb0842feaf5/go.mod h1:arxhWU66v8ysbZ+0VyRbWB9IRbAU4LocspmPRb97490=
|
||||
k8s.io/api v0.0.0-20200616091050-ce9b16fa078e/go.mod h1:arxhWU66v8ysbZ+0VyRbWB9IRbAU4LocspmPRb97490=
|
||||
k8s.io/apimachinery v0.0.0-20200601184421-76330795f827/go.mod h1:x4z2+k1N0YTBvV8PmaVs4/hSmKVVENZmTqI8gBygpLA=
|
||||
k8s.io/client-go v0.0.0-20200603035352-be97aaa976ad/go.mod h1:9htx9UMZzXK/Y1PHTFZWfb3l62+A+3tE9x6uQyAy8hA=
|
||||
k8s.io/component-base v0.0.0-20200529003043-ee971924d913/go.mod h1:+xL2xoK5MN1rAG3Uxf7IBBwc70/0GwbxpOYf2lckPdg=
|
||||
|
|
|
|||
|
|
@ -2570,7 +2570,7 @@
|
|||
"type": "array"
|
||||
},
|
||||
"topologySpreadConstraints": {
|
||||
"description": "TopologySpreadConstraints describes how a group of pods ought to spread across topology domains. Scheduler will schedule pods in a way which abides by the constraints. This field is alpha-level and is only honored by clusters that enables the EvenPodsSpread feature. All topologySpreadConstraints are ANDed.",
|
||||
"description": "TopologySpreadConstraints describes how a group of pods ought to spread across topology domains. Scheduler will schedule pods in a way which abides by the constraints. All topologySpreadConstraints are ANDed.",
|
||||
"items": {
|
||||
"$ref": "#/definitions/io.k8s.api.core.v1.TopologySpreadConstraint"
|
||||
},
|
||||
|
|
|
|||
Loading…
Reference in New Issue