@@ -165,7 +165,7 @@ func (s *APIServer) AddFlags(fs *pflag.FlagSet) {
fs.StringVar(&s.ClusterName,"cluster_name",s.ClusterName,"The instance prefix for the cluster")
fs.BoolVar(&s.EnableProfiling,"profiling",true,"Enable profiling via web interface host:port/debug/pprof/")
fs.StringVar(&s.ExternalHost,"external_hostname","","The hostname to use when generating externalized URLs for this master (e.g. Swagger API Docs.)")
fs.IntVar(&s.MaxRequestsInFlight,"max_requests_inflight",20,"The maximum number of requests in flight at a given time. When the server exceeds this, it rejects requests. Zero for no limit.")
fs.IntVar(&s.MaxRequestsInFlight,"max_requests_inflight",400,"The maximum number of requests in flight at a given time. When the server exceeds this, it rejects requests. Zero for no limit.")
fs.StringVar(&s.LongRunningRequestRE,"long_running_request_regexp","[.*\\/watch$][^\\/proxy.*]","A regular expression matching long running requests which should be excluded from maximum inflight request handling.")
fs.IntVar(&s.Port,"port",s.Port,"The port that the controller-manager's http service runs on")
fs.Var(&s.Address,"address","The IP address to serve on (set to 0.0.0.0 for all interfaces)")
s.ClientConfig.QPS=20.0
s.ClientConfig.Burst=30
client.BindClientConfigFlags(fs,&s.ClientConfig)
fs.StringVar(&s.CloudProvider,"cloud_provider",s.CloudProvider,"The provider for cloud services. Empty string for no provider.")
fs.StringVar(&s.CloudConfigFile,"cloud_config",s.CloudConfigFile,"The path to the cloud provider configuration file. Empty string for no configuration file.")