Revert "Configure the kubelet to use HTTPS"

This commit is contained in:
Robert Bailey
2015-04-01 13:59:31 -07:00
parent d010b2a34e
commit 32a1c052dc
9 changed files with 71 additions and 126 deletions

View File

@@ -561,7 +561,7 @@ func (m *Master) getServersToValidate(c *Config) map[string]apiserver.Server {
glog.Errorf("Failed to list minions: %v", err)
}
for ix, node := range nodes.Items {
serversToValidate[fmt.Sprintf("node-%d", ix)] = apiserver.Server{Addr: node.Name, Port: ports.KubeletPort, Path: "/healthz", EnableHTTPS: true}
serversToValidate[fmt.Sprintf("node-%d", ix)] = apiserver.Server{Addr: node.Name, Port: ports.KubeletPort, Path: "/healthz"}
}
return serversToValidate
}