The lando k8s job watcher code was attempting to read logs for a failed job by finding a pod with the job_name. This failed to find a pod and always returned Unable to read logs. Changes here read the logs from the most recent pod created by a failed job.
The lando k8s job watcher code was attempting to read logs for a failed job by finding a pod with the
job_name
. This failed to find a pod and always returnedUnable to read logs
. Changes here read the logs from the most recent pod created by a failed job.Fixes 204