Skip to content

Commit 3bb3db1

Browse files
committed
Bumped the number of times a node tries to lookup itself
Increased the number of tries in pkg/util/node/node.go::GetNodeIP by 1, because the kube-proxy was giving up too early. This is meant to address kubernetes#81879
1 parent 9a5b87a commit 3bb3db1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/util/node/node.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ func GetNodeHostIP(node *v1.Node) (net.IP, error) {
112112
func GetNodeIP(client clientset.Interface, hostname string) net.IP {
113113
var nodeIP net.IP
114114
backoff := wait.Backoff{
115-
Steps: 5,
115+
Steps: 6,
116116
Duration: 1 * time.Second,
117117
Factor: 2.0,
118118
Jitter: 0.2,

0 commit comments

Comments
 (0)