@@ -35,7 +38,7 @@ type ControllerManagerConfiguration struct {
...
@@ -35,7 +38,7 @@ type ControllerManagerConfiguration struct {
// dnsProvider is the provider for dns services.
// dnsProvider is the provider for dns services.
DnsProviderstring`json:"dnsProvider"`
DnsProviderstring`json:"dnsProvider"`
// dnsConfigFile is the path to the dns provider configuration file.
// dnsConfigFile is the path to the dns provider configuration file.
DnsConfigFilestring`json:"ndsConfigFile"`
DnsConfigFilestring`json:"dnsConfigFile"`
// concurrentServiceSyncs is the number of services that are
// concurrentServiceSyncs is the number of services that are
// allowed to sync concurrently. Larger number = more responsive service
// allowed to sync concurrently. Larger number = more responsive service
// management, but more CPU (and network) load.
// management, but more CPU (and network) load.
...
@@ -95,5 +98,7 @@ func (s *CMServer) AddFlags(fs *pflag.FlagSet) {
...
@@ -95,5 +98,7 @@ func (s *CMServer) AddFlags(fs *pflag.FlagSet) {
fs.StringVar(&s.ContentType,"kube-api-content-type",s.ContentType,"ContentType of requests sent to apiserver. Passing application/vnd.kubernetes.protobuf is an experimental feature now.")
fs.StringVar(&s.ContentType,"kube-api-content-type",s.ContentType,"ContentType of requests sent to apiserver. Passing application/vnd.kubernetes.protobuf is an experimental feature now.")
fs.Float32Var(&s.APIServerQPS,"federated-api-qps",s.APIServerQPS,"QPS to use while talking with federation apiserver")
fs.Float32Var(&s.APIServerQPS,"federated-api-qps",s.APIServerQPS,"QPS to use while talking with federation apiserver")
fs.IntVar(&s.APIServerBurst,"federated-api-burst",s.APIServerBurst,"Burst to use while talking with federation apiserver")
fs.IntVar(&s.APIServerBurst,"federated-api-burst",s.APIServerBurst,"Burst to use while talking with federation apiserver")