mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-27 21:47:07 +00:00
Merge pull request #51081 from diegs/typo
Automatic merge from submit-queue (batch tested with PRs 51081, 52725). If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>.. daemon_controller: fix typo. **What this PR does / why we need it**: I found a small typo while implementing #48841. With the existing code, some edge cases might lead to the wrong pods being deleted. **Release note**: ```release-note NONE ```
This commit is contained in:
commit
7ca9ec7932
@ -855,7 +855,7 @@ func (dsc *DaemonSetsController) manage(ds *extensions.DaemonSet, hash string) e
|
|||||||
if len(daemonPodsRunning) > 1 {
|
if len(daemonPodsRunning) > 1 {
|
||||||
sort.Sort(podByCreationTimestamp(daemonPodsRunning))
|
sort.Sort(podByCreationTimestamp(daemonPodsRunning))
|
||||||
for i := 1; i < len(daemonPodsRunning); i++ {
|
for i := 1; i < len(daemonPodsRunning); i++ {
|
||||||
podsToDelete = append(podsToDelete, daemonPods[i].Name)
|
podsToDelete = append(podsToDelete, daemonPodsRunning[i].Name)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
case !shouldContinueRunning && exists:
|
case !shouldContinueRunning && exists:
|
||||||
|
Loading…
Reference in New Issue
Block a user