We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 276610b commit 095c4a4Copy full SHA for 095c4a4
pkg/envtest/server.go
@@ -169,6 +169,9 @@ func (te *Environment) Start() (*rest.Config, error) {
169
// Create the *rest.Config for creating new clients
170
te.Config = &rest.Config{
171
Host: te.ControlPlane.APIURL().Host,
172
+ // gotta go fast during tests -- we don't really care about overwhelming our test API server
173
+ QPS: 1000.0,
174
+ Burst: 2000.0,
175
}
176
177
0 commit comments