@@ -193,6 +194,7 @@ func (s *KubeletServer) AddFlags(fs *pflag.FlagSet) {
fs.DurationVar(&s.FileCheckFrequency,"file-check-frequency",s.FileCheckFrequency,"Duration between checking config files for new data")
fs.DurationVar(&s.HTTPCheckFrequency,"http-check-frequency",s.HTTPCheckFrequency,"Duration between checking http for new data")
fs.StringVar(&s.ManifestURL,"manifest-url",s.ManifestURL,"URL for accessing the container manifest")
fs.StringVar(&s.ManifestURLHeader,"manifest-url-header",s.ManifestURLHeader,"HTTP header to use when accessing the manifest URL, with the key separated from the value with a ':', as in 'key:value'")
fs.BoolVar(&s.EnableServer,"enable-server",s.EnableServer,"Enable the Kubelet's server")
fs.Var(&s.Address,"address","The IP address for the Kubelet to serve on (set to 0.0.0.0 for all interfaces)")
fs.UintVar(&s.Port,"port",s.Port,"The port for the Kubelet to serve on. Note that \"kubectl logs\" will not work if you set this flag.")// see #9325