optimize dedupCurHistories func in DaemonSetsController

Signed-off-by: LastNight1997 <934104625@qq.com>
This commit is contained in:
LastNight1997 2022-02-25 15:02:50 +08:00 committed by xueshengjie
parent 6bc2f2ec22
commit 153dca4832

View File

@ -411,11 +411,6 @@ func (dsc *DaemonSetsController) dedupCurHistories(ctx context.Context, ds *apps
maxRevision = cur.Revision
}
}
// Clean up duplicates and relabel pods
for _, cur := range curHistories {
if cur.Name == keepCur.Name {
continue
}
// Relabel pods before dedup
pods, err := dsc.getDaemonPods(ctx, ds)
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 {
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 {
return nil, err
}
}
}
// Clean up duplicates
for _, cur := range curHistories {
if cur.Name == keepCur.Name {
continue
}
// Remove duplicates
err = dsc.kubeClient.AppsV1().ControllerRevisions(ds.Namespace).Delete(ctx, cur.Name, metav1.DeleteOptions{})
if err != nil {