Skip to content

Commit a5e26ff

Browse files
author
Rajat Chopra
committed
fix for bz1400609; if the node status flips on the order of ip addresses (when there are multiple NICs to report), do not let the SDN chase it
1 parent fca006a commit a5e26ff

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)