Skip to content

Commit 993395c

Browse files
author
OpenShift Bot
authored
Merge pull request #12107 from rajatchopra/multi_ip
Merged by openshift-bot
2 parents 04e71ca + a5e26ff commit 993395c

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

pkg/sdn/plugin/subnets.go

+10-1
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,15 @@ func (master *OsdnMaster) deleteNode(nodeName string) error {
105105
return nil
106106
}
107107

108+
func isValidNodeIP(node *kapi.Node, nodeIP string) bool {
109+
for _, addr := range node.Status.Addresses {
110+
if addr.Address == nodeIP {
111+
return true
112+
}
113+
}
114+
return false
115+
}
116+
108117
func getNodeIP(node *kapi.Node) (string, error) {
109118
if len(node.Status.Addresses) > 0 && node.Status.Addresses[0].Address != "" {
110119
return node.Status.Addresses[0].Address, nil
@@ -169,7 +178,7 @@ func (master *OsdnMaster) watchNodes() {
169178
case cache.Sync, cache.Added, cache.Updated:
170179
master.clearInitialNodeNetworkUnavailableCondition(node)
171180

172-
if oldNodeIP, ok := nodeAddressMap[uid]; ok && (oldNodeIP == nodeIP) {
181+
if oldNodeIP, ok := nodeAddressMap[uid]; ok && ((nodeIP == oldNodeIP) || isValidNodeIP(node, oldNodeIP)) {
173182
break
174183
}
175184
// Node status is frequently updated by kubelet, so log only if the above condition is not met

0 commit comments

Comments
 (0)