<@ULVA73B9P> I'm running prefect (version 2.14.4) ...
# ask-marvin
v
@Marvin I'm running prefect (version 2.14.4) on kubernetes infrastructure. When I run a flow, a kubernetes pod is gets to status running but the flow is then idle and no task is runned. Where could be a problem?
m
There could be several reasons why your flow is idle and no tasks are running. Here are a few things you could check: 1. Deployment: Make sure your Docker daemon is running and your flows are properly deployed. You can deploy all your flows using
prefect deploy --all
or deploy them individually by name, for example,
prefect deploy -n hello/default
or
prefect deploy -n hello/arthur
. Once the deployments are successfully created, you can run them from the UI. More info here 2. Pausing: By default, pausing a flow run blocks the worker — the flow is still running inside the pause_flow_run function. However, you may pause any flow run in this fashion, including non-deployment local flow runs and subflows. Make sure your flow is not paused. More info here 3. Logs: Check the logs for any errors or warnings. There might be some clues there as to why your tasks are not running. More info here If none of these suggestions help, you might want to consider reaching out to the Prefect community or support for more specific help.