Skip to content

Commit 2f10bff

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 e992008 commit 2f10bff

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
@@ -247,14 +247,15 @@ func (master *OsdnMaster) handleAddOrUpdateNode(obj, _ interface{}, eventType wa
247247
utilruntime.HandleError(fmt.Errorf("Node IP is not set for node %s, skipping %s event, node: %v", node.Name, eventType, node))
248248
return
249249
}
250-
master.clearInitialNodeNetworkUnavailableCondition(node)
251250

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

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

0 commit comments

Comments
 (0)