Skip to content

Commit

Permalink
Merge pull request #111 from mandre/vipless
Browse files Browse the repository at this point in the history
Bug 1894539: Allow node-ip to function without attachment to VIP network
  • Loading branch information
openshift-merge-robot committed Dec 15, 2020
2 parents a9f2b44 + dc0531e commit 8123933
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cmd/runtimecfg/node-ip.go
Expand Up @@ -144,7 +144,8 @@ func getSuitableIPs(retry bool, vips []net.IP) (chosen []net.IP, err error) {
if len(chosen) > 0 || err != nil {
return chosen, err
}
} else {
}
if len(chosen) == 0 {
chosen, err = utils.AddressesDefault(utils.ValidNodeAddress)
if len(chosen) > 0 || err != nil {
return chosen, err
Expand Down

0 comments on commit 8123933

Please sign in to comment.