Removed un-necessary empty line.

This commit is contained in:
Klaus Ma 2017-03-03 17:50:56 +08:00
parent 815b340f8d
commit 41c4426a30
2 changed files with 0 additions and 3 deletions

View File

@ -124,7 +124,6 @@ HTTP server: The kubelet can also listen for HTTP and respond to a simple API
// UnsecuredKubeletDeps returns a KubeletDeps suitable for being run, or an error if the server setup
// is not valid. It will not start any background processes, and does not include authentication/authorization
func UnsecuredKubeletDeps(s *options.KubeletServer) (*kubelet.KubeletDeps, error) {
// Initialize the TLS Options
tlsOptions, err := InitializeTLS(&s.KubeletConfiguration)
if err != nil {
@ -349,7 +348,6 @@ func makeEventRecorder(s *componentconfig.KubeletConfiguration, kubeDeps *kubele
} else {
glog.Warning("No api server defined - no events will be sent to API server.")
}
}
func run(s *options.KubeletServer, kubeDeps *kubelet.KubeletDeps) (err error) {

View File

@ -210,7 +210,6 @@ func (kl *Kubelet) initialNode() (*v1.Node, error) {
}
}
node.Spec.Taints = taints
}
// Initially, set NodeNetworkUnavailable to true.
if kl.providerRequiresNetworkingConfiguration() {