optimize dedupCurHistories func in DaemonSetsController
Signed-off-by: LastNight1997 <934104625@qq.com>
This commit is contained in:
		
				
					committed by
					
						
						xueshengjie
					
				
			
			
				
	
			
			
			
						parent
						
							6bc2f2ec22
						
					
				
				
					commit
					153dca4832
				
			@@ -411,11 +411,6 @@ func (dsc *DaemonSetsController) dedupCurHistories(ctx context.Context, ds *apps
 | 
				
			|||||||
			maxRevision = cur.Revision
 | 
								maxRevision = cur.Revision
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
	// Clean up duplicates and relabel pods
 | 
					 | 
				
			||||||
	for _, cur := range curHistories {
 | 
					 | 
				
			||||||
		if cur.Name == keepCur.Name {
 | 
					 | 
				
			||||||
			continue
 | 
					 | 
				
			||||||
		}
 | 
					 | 
				
			||||||
	// Relabel pods before dedup
 | 
						// Relabel pods before dedup
 | 
				
			||||||
	pods, err := dsc.getDaemonPods(ctx, ds)
 | 
						pods, err := dsc.getDaemonPods(ctx, ds)
 | 
				
			||||||
	if err != nil {
 | 
						if err != nil {
 | 
				
			||||||
@@ -430,16 +425,21 @@ func (dsc *DaemonSetsController) dedupCurHistories(ctx context.Context, ds *apps
 | 
				
			|||||||
					},
 | 
										},
 | 
				
			||||||
				},
 | 
									},
 | 
				
			||||||
			}
 | 
								}
 | 
				
			||||||
				patchJson, err := json.Marshal(patchRaw)
 | 
								patchJSON, err := json.Marshal(patchRaw)
 | 
				
			||||||
			if err != nil {
 | 
								if err != nil {
 | 
				
			||||||
				return nil, err
 | 
									return nil, err
 | 
				
			||||||
			}
 | 
								}
 | 
				
			||||||
				_, err = dsc.kubeClient.CoreV1().Pods(ds.Namespace).Patch(ctx, pod.Name, types.MergePatchType, patchJson, metav1.PatchOptions{})
 | 
								_, err = dsc.kubeClient.CoreV1().Pods(ds.Namespace).Patch(ctx, pod.Name, types.MergePatchType, patchJSON, metav1.PatchOptions{})
 | 
				
			||||||
			if err != nil {
 | 
								if err != nil {
 | 
				
			||||||
				return nil, err
 | 
									return nil, err
 | 
				
			||||||
			}
 | 
								}
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
						// Clean up duplicates
 | 
				
			||||||
 | 
						for _, cur := range curHistories {
 | 
				
			||||||
 | 
							if cur.Name == keepCur.Name {
 | 
				
			||||||
 | 
								continue
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
		// Remove duplicates
 | 
							// Remove duplicates
 | 
				
			||||||
		err = dsc.kubeClient.AppsV1().ControllerRevisions(ds.Namespace).Delete(ctx, cur.Name, metav1.DeleteOptions{})
 | 
							err = dsc.kubeClient.AppsV1().ControllerRevisions(ds.Namespace).Delete(ctx, cur.Name, metav1.DeleteOptions{})
 | 
				
			||||||
		if err != nil {
 | 
							if err != nil {
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user