Im a bit stumped :slightly_smiling_face:. I have a...
# ask-community
s
Im a bit stumped 🙂. I have a kubernetes deployment using workers, When I submit a quick run the job is created, pod is created, runs fun and exits. In the UI I get a pending flow run, and an additional flow run that completes, both it seems triggered by the same quick run. At a loss at what to look for here.
f
I'm no expert on Prefect, but you may be able to get the logs or error status out of the pod itself using kubectl, eg:
kubectl describe pod your-pod-name-here
or
kubectl logs your-pod-name-here
s
The pod runs and terminates as expected.