diff --git a/pkg/kubelet/server.go b/pkg/kubelet/server.go index 3840598fe4c..45964132f21 100644 --- a/pkg/kubelet/server.go +++ b/pkg/kubelet/server.go @@ -57,7 +57,7 @@ func ListenAndServeKubeletServer(host HostInterface, updates chan<- interface{}, WriteTimeout: 10 * time.Second, MaxHeaderBytes: 1 << 20, } - s.ListenAndServe() + glog.Fatal(s.ListenAndServe()) } // HostInterface contains all the kubelet methods required by the server.