Limit the scheduler to a burst qps of 30 and rate limit pod binding

This commit is contained in:
Prashanth Balasubramanian
2015-05-18 17:38:05 -07:00
parent 9067e94e5b
commit 4004a68ae9
4 changed files with 85 additions and 3 deletions

View File

@@ -92,7 +92,7 @@ func (s *SchedulerServer) Run(_ []string) error {
return err
}
kubeconfig.QPS = 20.0
kubeconfig.Burst = 100
kubeconfig.Burst = 30
kubeClient, err := client.New(kubeconfig)
if err != nil {