From 78a4c8e95ac02317667806436f75171577cc2ca6 Mon Sep 17 00:00:00 2001 From: Andy Goldstein Date: Thu, 25 May 2017 09:47:47 -0400 Subject: [PATCH] Up namespace controller workers to 5 Increase the number of namespace controller workers from 2 to 5 in an effort to speed up namespace deletions. --- cmd/kube-controller-manager/app/options/options.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/kube-controller-manager/app/options/options.go b/cmd/kube-controller-manager/app/options/options.go index 03a41cbad86..20b94065d01 100644 --- a/cmd/kube-controller-manager/app/options/options.go +++ b/cmd/kube-controller-manager/app/options/options.go @@ -66,7 +66,7 @@ func NewCMServer() *CMServer { ConcurrentJobSyncs: 5, ConcurrentResourceQuotaSyncs: 5, ConcurrentDeploymentSyncs: 5, - ConcurrentNamespaceSyncs: 2, + ConcurrentNamespaceSyncs: 5, ConcurrentSATokenSyncs: 5, LookupCacheSizeForRC: 4096, LookupCacheSizeForRS: 4096,