Merge pull request #95259 from tkashem/apf-workload-low

Increase the concurrency share of workload-low priority level

Kubernetes-commit: 6578517aa7a7afd480d6efdb92d42f4dbd5777a3
This commit is contained in:
Kubernetes Publisher 2020-10-23 12:15:02 -07:00
commit edaf00d2d0
4 changed files with 6 additions and 6 deletions

2
Godeps/Godeps.json generated
View File

@ -676,7 +676,7 @@
},
{
"ImportPath": "k8s.io/api",
"Rev": "54bcc311e327"
"Rev": "ccbd11b5dd0a"
},
{
"ImportPath": "k8s.io/apimachinery",

4
go.mod
View File

@ -41,7 +41,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-20201020200614-54bcc311e327
k8s.io/api v0.0.0-20201023125151-ccbd11b5dd0a
k8s.io/apimachinery v0.0.0-20201020200440-554eef9dbf66
k8s.io/client-go v0.0.0-20201020200834-d1a4fe5f2d96
k8s.io/component-base v0.0.0-20201020201314-b8c7ac1518d8
@ -54,7 +54,7 @@ require (
)
replace (
k8s.io/api => k8s.io/api v0.0.0-20201020200614-54bcc311e327
k8s.io/api => k8s.io/api v0.0.0-20201023125151-ccbd11b5dd0a
k8s.io/apimachinery => k8s.io/apimachinery v0.0.0-20201020200440-554eef9dbf66
k8s.io/client-go => k8s.io/client-go v0.0.0-20201020200834-d1a4fe5f2d96
k8s.io/component-base => k8s.io/component-base v0.0.0-20201020201314-b8c7ac1518d8

2
go.sum
View File

@ -516,7 +516,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-20201020200614-54bcc311e327/go.mod h1:ZstqwXfkQ55HZmXltK0DHYZaNJbMq4U/mnlyigw1pH0=
k8s.io/api v0.0.0-20201023125151-ccbd11b5dd0a/go.mod h1:ZstqwXfkQ55HZmXltK0DHYZaNJbMq4U/mnlyigw1pH0=
k8s.io/apimachinery v0.0.0-20201020200440-554eef9dbf66/go.mod h1:6s3VNb000AUbBIxR7q3WHlbBwfpEGqIJsCG5gIX+0LI=
k8s.io/client-go v0.0.0-20201020200834-d1a4fe5f2d96/go.mod h1:MEvNyY+iZEFaAPeMVco7LyFmysN3O9jX9QSKcacQ0O8=
k8s.io/component-base v0.0.0-20201020201314-b8c7ac1518d8/go.mod h1:/qyqddjukzwbk9MFz10nyuHMur+ykWBpJ1oweb8IDNE=

View File

@ -210,7 +210,7 @@ var (
flowcontrol.PriorityLevelConfigurationSpec{
Type: flowcontrol.PriorityLevelEnablementLimited,
Limited: &flowcontrol.LimitedPriorityLevelConfiguration{
AssuredConcurrencyShares: 20,
AssuredConcurrencyShares: 100,
LimitResponse: flowcontrol.LimitResponse{
Type: flowcontrol.LimitResponseTypeQueue,
Queuing: &flowcontrol.QueuingConfiguration{
@ -227,7 +227,7 @@ var (
flowcontrol.PriorityLevelConfigurationSpec{
Type: flowcontrol.PriorityLevelEnablementLimited,
Limited: &flowcontrol.LimitedPriorityLevelConfiguration{
AssuredConcurrencyShares: 100,
AssuredConcurrencyShares: 20,
LimitResponse: flowcontrol.LimitResponse{
Type: flowcontrol.LimitResponseTypeQueue,
Queuing: &flowcontrol.QueuingConfiguration{