KubeJobNotCompleted#
Fires when a job is still active after running for more than 12 hours.
Troubleshooting hints :
- Get on the cluster and run
kubectl -n <namespace> describe pod <pod>- the name of the pod is in the alert tags
- the namespace of the pod is in the alert tags
- the source of the issue might be in the
Events:section at the end.
- Describe the job by running
kubectl -n <namespace> describe job <job>- the job name is in the alert message
- the source of the issue might be in the
Events:section at the end.
- Display the log of the pod by running
kubectl logs <pod> -n <namespace>- the source of the issue might be seen in the log.