We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e0ff3d commit 706bf35Copy full SHA for 706bf35
pkg/healthchecker/types/types.go
@@ -44,7 +44,7 @@ const (
44
kubeletPortKey = "KUBELET_PORT"
45
kubeProxyPortKey = "KUBEPROXY_PORT"
46
47
- defaultHost = "127.0.0.1"
+ defaultHostAddress = "127.0.0.1"
48
defaultKubeletPort = "10248"
49
defaultKubeproxyPort = "10256"
50
)
@@ -61,7 +61,7 @@ func init() {
61
func setKubeEndpoints() {
62
var o string
63
64
- hostAddress := defaultHost
+ hostAddress := defaultHostAddress
65
kubeletPort := defaultKubeletPort
66
kubeProxyPort := defaultKubeproxyPort
67
0 commit comments