File tree 1 file changed +10
-1
lines changed
1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -105,6 +105,15 @@ func (master *OsdnMaster) deleteNode(nodeName string) error {
105
105
return nil
106
106
}
107
107
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
+
108
117
func getNodeIP (node * kapi.Node ) (string , error ) {
109
118
if len (node .Status .Addresses ) > 0 && node .Status .Addresses [0 ].Address != "" {
110
119
return node .Status .Addresses [0 ].Address , nil
@@ -169,7 +178,7 @@ func (master *OsdnMaster) watchNodes() {
169
178
case cache .Sync , cache .Added , cache .Updated :
170
179
master .clearInitialNodeNetworkUnavailableCondition (node )
171
180
172
- if oldNodeIP , ok := nodeAddressMap [uid ]; ok && (oldNodeIP == nodeIP ) {
181
+ if oldNodeIP , ok := nodeAddressMap [uid ]; ok && (( nodeIP == oldNodeIP ) || isValidNodeIP ( node , oldNodeIP ) ) {
173
182
break
174
183
}
175
184
// Node status is frequently updated by kubelet, so log only if the above condition is not met
You can’t perform that action at this time.
0 commit comments