@@ -911,8 +911,8 @@ func (c *Controller) handleDeletePod(key string) (err error) {
911
911
912
912
var keepIPCR bool
913
913
if ok , stsName , stsUID := isStatefulSetPod (pod ); ok {
914
- if pod .DeletionTimestamp != nil {
915
- klog .Infof ("handle deletion of sts pod %s" , podName )
914
+ if ! pod .DeletionTimestamp . IsZero () {
915
+ klog .Infof ("handle deletion of sts pod %s" , podKey )
916
916
toDel := isStatefulSetPodToDel (c .config .KubeClient , pod , stsName , stsUID )
917
917
if ! toDel {
918
918
klog .Infof ("try keep ip for sts pod %s" , podKey )
@@ -935,7 +935,7 @@ func (c *Controller) handleDeletePod(key string) (err error) {
935
935
if isVMPod && c .config .EnableKeepVMIP {
936
936
ports , err := c .OVNNbClient .ListNormalLogicalSwitchPorts (true , map [string ]string {"pod" : podKey })
937
937
if err != nil {
938
- klog .Errorf ("failed to list lsps of pod '%s', %v" , pod . Name , err )
938
+ klog .Errorf ("failed to list lsps of pod %s: %v" , podKey , err )
939
939
return err
940
940
}
941
941
for _ , port := range ports {
@@ -946,7 +946,7 @@ func (c *Controller) handleDeletePod(key string) (err error) {
946
946
}
947
947
}
948
948
if pod .DeletionTimestamp != nil {
949
- klog .Infof ("handle deletion of vm pod %s" , podName )
949
+ klog .Infof ("handle deletion of vm pod %s" , podKey )
950
950
vmToBeDel := c .isVMToDel (pod , vmName )
951
951
if ! vmToBeDel {
952
952
klog .Infof ("try keep ip for vm pod %s" , podKey )
@@ -968,12 +968,12 @@ func (c *Controller) handleDeletePod(key string) (err error) {
968
968
969
969
podNets , err := c .getPodKubeovnNets (pod )
970
970
if err != nil {
971
- klog .Errorf ("failed to get pod nets %v" , err )
971
+ klog .Errorf ("failed to get kube-ovn nets of pod %s: %v" , podKey , err )
972
972
}
973
973
if ! keepIPCR {
974
974
ports , err := c .OVNNbClient .ListNormalLogicalSwitchPorts (true , map [string ]string {"pod" : podKey })
975
975
if err != nil {
976
- klog .Errorf ("failed to list lsps of pod '%s', %v" , pod . Name , err )
976
+ klog .Errorf ("failed to list lsps of pod %s: %v" , podKey , err )
977
977
return err
978
978
}
979
979
@@ -1259,16 +1259,20 @@ func isStatefulSetPodToDel(c kubernetes.Interface, pod *v1.Pod, statefulSetName
1259
1259
if err != nil {
1260
1260
// statefulset is deleted
1261
1261
if k8serrors .IsNotFound (err ) {
1262
- klog .Infof ("statefulset %s is deleted" , statefulSetName )
1262
+ klog .Infof ("statefulset %s/%s has been deleted" , pod . Namespace , statefulSetName )
1263
1263
return true
1264
1264
}
1265
- klog .Errorf ("failed to get statefulset %v" , err )
1265
+ klog .Errorf ("failed to get statefulset %s/%s: %v" , pod . Namespace , statefulSetName , err )
1266
1266
return false
1267
1267
}
1268
1268
1269
1269
// statefulset is being deleted, or it's a newly created one
1270
- if ! sts .DeletionTimestamp .IsZero () || sts .UID != statefulSetUID {
1271
- klog .Infof ("statefulset %s is being deleted" , statefulSetName )
1270
+ if ! sts .DeletionTimestamp .IsZero () {
1271
+ klog .Infof ("statefulset %s/%s is being deleted" , pod .Namespace , statefulSetName )
1272
+ return true
1273
+ }
1274
+ if sts .UID != statefulSetUID {
1275
+ klog .Infof ("statefulset %s/%s is a newly created one" , pod .Namespace , statefulSetName )
1272
1276
return true
1273
1277
}
1274
1278
@@ -1286,9 +1290,66 @@ func isStatefulSetPodToDel(c kubernetes.Interface, pod *v1.Pod, statefulSetName
1286
1290
startOrdinal = int64 (sts .Spec .Ordinals .Start )
1287
1291
}
1288
1292
if index >= startOrdinal + int64 (* sts .Spec .Replicas ) {
1289
- klog .Infof ("statefulset %s is down scaled" , statefulSetName )
1293
+ klog .Infof ("statefulset %s/%s is down scaled" , pod .Namespace , statefulSetName )
1294
+ return true
1295
+ }
1296
+ return false
1297
+ }
1298
+
1299
+ // only gc statefulset pod lsp when:
1300
+ // 1. the statefulset has been deleted or is being deleted
1301
+ // 2. the statefulset has been deleted and recreated
1302
+ // 3. the statefulset is down scaled and the pod is not alive
1303
+ func isStatefulSetPodToGC (c kubernetes.Interface , pod * v1.Pod , statefulSetName string , statefulSetUID types.UID ) bool {
1304
+ sts , err := c .AppsV1 ().StatefulSets (pod .Namespace ).Get (context .Background (), statefulSetName , metav1.GetOptions {})
1305
+ if err != nil {
1306
+ // the statefulset has been deleted
1307
+ if k8serrors .IsNotFound (err ) {
1308
+ klog .Infof ("statefulset %s/%s has been deleted" , pod .Namespace , statefulSetName )
1309
+ return true
1310
+ }
1311
+ klog .Errorf ("failed to get statefulset %s/%s: %v" , pod .Namespace , statefulSetName , err )
1312
+ return false
1313
+ }
1314
+
1315
+ // statefulset is being deleted
1316
+ if ! sts .DeletionTimestamp .IsZero () {
1317
+ klog .Infof ("statefulset %s/%s is being deleted" , pod .Namespace , statefulSetName )
1318
+ return true
1319
+ }
1320
+ // the statefulset has been deleted and recreated
1321
+ if sts .UID != statefulSetUID {
1322
+ klog .Infof ("statefulset %s/%s is a newly created one" , pod .Namespace , statefulSetName )
1290
1323
return true
1291
1324
}
1325
+
1326
+ // the statefulset is down scaled and the pod is not alive
1327
+
1328
+ tempStrs := strings .Split (pod .Name , "-" )
1329
+ numStr := tempStrs [len (tempStrs )- 1 ]
1330
+ index , err := strconv .ParseInt (numStr , 10 , 0 )
1331
+ if err != nil {
1332
+ klog .Errorf ("failed to parse %s to int" , numStr )
1333
+ return false
1334
+ }
1335
+ // down scaled
1336
+ var startOrdinal int64
1337
+ if sts .Spec .Ordinals != nil {
1338
+ startOrdinal = int64 (sts .Spec .Ordinals .Start )
1339
+ }
1340
+ if index >= startOrdinal + int64 (* sts .Spec .Replicas ) {
1341
+ klog .Infof ("statefulset %s/%s is down scaled" , pod .Namespace , statefulSetName )
1342
+ if ! isPodAlive (pod ) {
1343
+ // we must check whether the pod is alive because we have to consider the following case:
1344
+ // 1. the statefulset is down scaled to zero
1345
+ // 2. the lsp gc is triggered
1346
+ // 3. gc interval, e.g. 90s, is passed and the second gc is triggered
1347
+ // 4. the sts is up scaled to the original replicas
1348
+ // 5. the pod is still running and it will not be recreated
1349
+ return true
1350
+ }
1351
+ }
1352
+
1292
1353
return false
1293
1354
}
1294
1355
0 commit comments