Skip to content

Commit 0b33729

Browse files
author
Ravi Sankar Penta
committed
Avoid NodeNetworkUnavailable condition check for every node status update
- We know that kubelet sets NodeNetworkUnavailable condition when the node is created/registered with api server. - So we only need to call clearInitialNodeNetworkUnavailableCondition() for the first time and not during subsequent node status update events.
1 parent fb6e20e commit 0b33729

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pkg/network/master/subnets.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -248,14 +248,15 @@ func (master *OsdnMaster) handleAddOrUpdateNode(obj, _ interface{}, eventType wa
248248
utilruntime.HandleError(fmt.Errorf("Node IP is not set for node %s, skipping %s event, node: %v", node.Name, eventType, node))
249249
return
250250
}
251-
master.clearInitialNodeNetworkUnavailableCondition(node)
252251

253252
if oldNodeIP, ok := master.hostSubnetNodeIPs[node.UID]; ok && (nodeIP == oldNodeIP) {
254253
return
255254
}
256255
// Node status is frequently updated by kubelet, so log only if the above condition is not met
257256
glog.V(5).Infof("Watch %s event for Node %q", eventType, node.Name)
258257

258+
master.clearInitialNodeNetworkUnavailableCondition(node)
259+
259260
usedNodeIP, err := master.addNode(node.Name, string(node.UID), nodeIP, nil)
260261
if err != nil {
261262
utilruntime.HandleError(fmt.Errorf("Error creating subnet for node %s, ip %s: %v", node.Name, nodeIP, err))

0 commit comments

Comments
 (0)