🐛 Fix bug with pod logs

This commit is contained in:
Andreas Dinauer 2025-06-08 14:39:38 +02:00
parent 6ffbb7fd6a
commit dc6354f033

View File

@ -29,7 +29,7 @@ public class PodService
public Optional<Pod> findPodById(String id) public Optional<Pod> findPodById(String id)
{ {
for(Pod pod : clientProvider.getClient().pods().list().getItems()) for(Pod pod : clientProvider.getClient().pods().inAnyNamespace().list().getItems())
{ {
if(pod.getMetadata().getUid().equals(id)) if(pod.getMetadata().getUid().equals(id))
{ {