Merge pull request #47858 from mikedanese/fix

Automatic merge from submit-queue (batch tested with PRs 47851, 47824, 47858, 46099)

bump the gke-cert-controller wokers to match it's qps

This increases Issuance per second from 2.5 csrs to 5 csrs which is the theoretical limit with the current client side rate limiting.

Issue https://github.com/kubernetes/kubernetes/issues/47855
This commit is contained in:
Kubernetes Submit Queue 2017-06-21 15:21:17 -07:00 committed by GitHub
commit aa1c8daf19

View File

@ -87,6 +87,6 @@ func Run(s *GKECertificatesController) error {
}
sharedInformers.Start(nil)
controller.Run(1, nil) // runs forever
return nil
controller.Run(5, nil) // runs forever
panic("unreachable")
}