Merge pull request #129101 from xigang/controller_log

Adjust the log level of the FilterActivePods method
This commit is contained in:
Kubernetes Prow Robot 2025-01-13 12:20:32 -08:00 committed by GitHub
commit ccd2b4e8a7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -979,8 +979,6 @@ func FilterActivePods(logger klog.Logger, pods []*v1.Pod) []*v1.Pod {
for _, p := range pods {
if IsPodActive(p) {
result = append(result, p)
} else {
logger.V(4).Info("Ignoring inactive pod", "pod", klog.KObj(p), "phase", p.Status.Phase, "deletionTime", klog.SafePtr(p.DeletionTimestamp))
}
}
return result