diff --git a/cmd/kube-proxy/app/server.go b/cmd/kube-proxy/app/server.go index 9074b7f99e5..635fd0fc25d 100644 --- a/cmd/kube-proxy/app/server.go +++ b/cmd/kube-proxy/app/server.go @@ -463,6 +463,7 @@ func createClients(config componentbaseconfig.ClientConnectionConfiguration, mas kubeConfig.ContentType = config.ContentType kubeConfig.QPS = config.QPS //TODO make config struct use int instead of int32? + // https://github.com/kubernetes/kubernetes/issues/73375 kubeConfig.Burst = int(config.Burst) client, err := clientset.NewForConfig(kubeConfig)