Hi all, terminology question here. Does a 'deploy...
# prefect-getting-started
e
Hi all, terminology question here. Does a 'deployment run' mean the same thing as a 'flow run'? The former is from prefect CLI (eg.
prefect deployment run ...
); the latter show up in prefect UI.
k
prefect deployment run
is equivalent to hitting the run button on a deployment in the UI. The creation of a flow run is an outcome of running a deployment, since the deployment contains information about how and where that flow should run.
upvote 1
e
Thanks for the clarification!