Skip to content

Commit

Permalink
Increase the k8s client QPS/burst
Browse files Browse the repository at this point in the history
Increase the k8s client QPS/burst to avoid throttling request errors

Fixes vmware-tanzu#7127
Fixes vmware-tanzu#3191

Signed-off-by: Wenkai Yin(尹文开) <yinw@vmware.com>
  • Loading branch information
ywk253100 committed Jan 12, 2024
1 parent d412854 commit 6367cc1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/cmd/server/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,8 @@ const (
defaultResourceTerminatingTimeout = 10 * time.Minute

// server's client default qps and burst
defaultClientQPS float32 = 20.0
defaultClientBurst int = 30
defaultClientQPS float32 = 100.0
defaultClientBurst int = 100
defaultClientPageSize int = 500

defaultProfilerAddress = "localhost:6060"
Expand Down

0 comments on commit 6367cc1

Please sign in to comment.