Reputation: 41
Pod created by job gets killed with Message:
Normal DeadlineExceeded Job was active longer than specified deadline
This is a pod running training process with Tensorflow. The weird thing is this pod is just created with no thing error in kubectl log
output.
Upvotes: 1
Views: 5628
Reputation: 22922
As stated in https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/#job-termination-and-cleanup you can see that DeadlineExceeded
means your process run longer then the longest time it is allowed to in your spec.
Upvotes: 1