add back klog logging

pull/11482/head
Steven Powell 2021-05-26 10:23:48 -07:00
parent 9de7d2da57
commit d3a4f9b2f2
1 changed files with 1 additions and 0 deletions

View File

@ -139,6 +139,7 @@ func Start(starter Starter, apiServer bool) (*kubeconfig.Settings, error) {
go func() {
// inject {"host.minikube.internal": hostIP} record into CoreDNS
if err := addCoreDNSEntry(starter.Runner, "host.minikube.internal", hostIP.String(), *starter.Cfg); err != nil {
klog.Errorf("Unable to inject {%q: %s} record into CoreDNS: %v", "host.minikube.internal", hostIP.String(), err)
out.Err("Failed to inject host.minikube.internal into CoreDNS, this will limit the pods access to the host IP")
}
}()