Signed-off-by: co63oc <co63oc@users.noreply.github.com>
This commit is contained in:
co63oc
2025-03-02 21:20:02 +08:00
parent 4ed1e07f16
commit 7925a96726
5 changed files with 6 additions and 6 deletions

View File

@ -90,7 +90,7 @@ func ListRunningPods(ctx context.Context, client clientcorev1.PodInterface, depl
for i := range podList.Items {
pod := &podList.Items[i]
if pod.Status.Phase == corev1.PodRunning {
logrus.Debugf("pod runnning: %q", pod.Name)
logrus.Debugf("pod running: %q", pod.Name)
runningPods = append(runningPods, pod)
}
}