0

I want to run a Kubernetes CronJob for a PHP script. Job executes properly but status of the POD remains running and after few minutes it becomes Error. It should be Completed status. Tried with different options but couldn't be able to resolve the issue.

Here is my CronJob Yaml file

enter image description here

Here is the output of kubectl get pods enter image description here

Here is the log output inside the container.

Ignore the PHP exception. Issue is there regardless of the exception.

enter image description here

Aruna
  • 91
  • 1
  • 9
  • 1
    what do you see in `kubectl describe pod ` ? (of one of the errors) – ItayB Jan 01 '21 at 15:17
  • 3
    exit code `0` makes a pod completed status, exit code `1` makes it set status as Error. make sure its not getting any exception or exit code `1`. – Saikat Chakrabortty Jan 01 '21 at 15:18
  • 1
    You seem to have attached an image instead of your YAML file, and images instead of the plain-text `kubectl` outputs. Can you replace these images with the actual text contents? (I can't `kubectl apply -f` a PNG file.) – David Maze Jan 01 '21 at 17:30
  • 1
    Thanks all for your help. I was able to resolve the issue. As mentioned by @SaikatChakrabortty it was due to exit code of the PHP application. – Aruna Jan 02 '21 at 03:27
  • 1
    @SaikatChakrabortt would you consider converting your comment into an answer? – acid_fuji Jan 04 '21 at 10:30
  • @thomas sure, thank you, I have added just now! – Saikat Chakrabortty Jan 04 '21 at 10:48

1 Answers1

6

The state of the pod sets to completed when the running process / the application or the container returns exit code 0.

If in case it's returning a non-zero exit code it usually sets it to state Error.

If you want the pod set to completed status, just make sure the application at the end returning an exit code which is 0.

OPINION: It's something which is usual cases should be/are handled by the application itself.

I'm attaching docs for the k8s jobs.

Dharman
  • 30,962
  • 25
  • 85
  • 135
Saikat Chakrabortty
  • 2,520
  • 4
  • 22
  • 39