@@ -228,9 +228,9 @@ func (s *KubeletServer) AddFlags(fs *pflag.FlagSet) {
...
@@ -228,9 +228,9 @@ func (s *KubeletServer) AddFlags(fs *pflag.FlagSet) {
fs.StringVar(&s.DockerEndpoint,"docker-endpoint",s.DockerEndpoint,"If non-empty, use this for the docker endpoint to communicate with")
fs.StringVar(&s.DockerEndpoint,"docker-endpoint",s.DockerEndpoint,"If non-empty, use this for the docker endpoint to communicate with")
fs.StringVar(&s.RootDirectory,"root-dir",s.RootDirectory,"Directory path for managing kubelet files (volume mounts,etc).")
fs.StringVar(&s.RootDirectory,"root-dir",s.RootDirectory,"Directory path for managing kubelet files (volume mounts,etc).")
fs.BoolVar(&s.AllowPrivileged,"allow-privileged",s.AllowPrivileged,"If true, allow containers to request privileged mode. [default=false]")
fs.BoolVar(&s.AllowPrivileged,"allow-privileged",s.AllowPrivileged,"If true, allow containers to request privileged mode. [default=false]")
fs.StringVar(&s.HostNetworkSources,"host-network-sources",s.HostNetworkSources,"Comma-separated list of sources from which the Kubelet allows pods to use of host network. For all sources use \"*\" [default=\"file\"]")
fs.StringVar(&s.HostNetworkSources,"host-network-sources",s.HostNetworkSources,"Comma-separated list of sources from which the Kubelet allows pods to use of host network. [default=\"*\"]")
fs.StringVar(&s.HostPIDSources,"host-pid-sources",s.HostPIDSources,"Comma-separated list of sources from which the Kubelet allows pods to use the host pid namespace. For all sources use \"*\" [default=\"file\"]")
fs.StringVar(&s.HostPIDSources,"host-pid-sources",s.HostPIDSources,"Comma-separated list of sources from which the Kubelet allows pods to use the host pid namespace. [default=\"*\"]")
fs.StringVar(&s.HostIPCSources,"host-ipc-sources",s.HostIPCSources,"Comma-separated list of sources from which the Kubelet allows pods to use the host ipc namespace. For all sources use \"*\" [default=\"file\"]")
fs.StringVar(&s.HostIPCSources,"host-ipc-sources",s.HostIPCSources,"Comma-separated list of sources from which the Kubelet allows pods to use the host ipc namespace. [default=\"*\"]")
fs.Float64Var(&s.RegistryPullQPS,"registry-qps",s.RegistryPullQPS,"If > 0, limit registry pull QPS to this value. If 0, unlimited. [default=0.0]")
fs.Float64Var(&s.RegistryPullQPS,"registry-qps",s.RegistryPullQPS,"If > 0, limit registry pull QPS to this value. If 0, unlimited. [default=0.0]")
fs.IntVar(&s.RegistryBurst,"registry-burst",s.RegistryBurst,"Maximum size of a bursty pulls, temporarily allows pulls to burst to this number, while still not exceeding registry-qps. Only used if --registry-qps > 0")
fs.IntVar(&s.RegistryBurst,"registry-burst",s.RegistryBurst,"Maximum size of a bursty pulls, temporarily allows pulls to burst to this number, while still not exceeding registry-qps. Only used if --registry-qps > 0")
fs.Float32Var(&s.EventRecordQPS,"event-qps",s.EventRecordQPS,"If > 0, limit event creations per second to this value. If 0, unlimited. [default=0.0]")
fs.Float32Var(&s.EventRecordQPS,"event-qps",s.EventRecordQPS,"If > 0, limit event creations per second to this value. If 0, unlimited. [default=0.0]")