Skip to content

Commit

Permalink
Merge pull request kubernetes#81880 from MikeSpreitzer/fix81879
Browse files Browse the repository at this point in the history
Bumped the number of times a node tries to lookup itself
  • Loading branch information
k8s-ci-robot authored Nov 27, 2019
2 parents ef1af14 + 3bb3db1 commit 7ed5eb6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/util/node/node.go
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ func GetNodeHostIP(node *v1.Node) (net.IP, error) {
func GetNodeIP(client clientset.Interface, hostname string) net.IP {
var nodeIP net.IP
backoff := wait.Backoff{
Steps: 5,
Steps: 6,
Duration: 1 * time.Second,
Factor: 2.0,
Jitter: 0.2,
Expand Down

0 comments on commit 7ed5eb6

Please sign in to comment.