Richard Sundqvist
06/30/2026, 9:14 AMMarvin
06/30/2026, 9:14 AMMarvin
06/30/2026, 9:16 AM/deployments page has a fixed set of columns, and deployment version is not one of them. There also isn’t a built-in way to customize that table to add a version column.
What is available:
- Deployment detail page: version is shown there for an individual deployment
- CLI: you can inspect versions from the terminal
- API: the deployment object includes a version field
Useful workarounds:
bash
prefect deployment ls --output json
and for a single deployment:
bash
prefect deployment inspect "my-flow/my-deployment"
I verified those CLI commands exist.
So the practical answer is:
- No for showing version directly in <http://localhost:4200/deployments>
- Yes for viewing it on each deployment’s detail page or via CLI/API
Relevant docs:
- Deployments concept docs
- Deployment CLI docs
If you want, I can also show you a quick script or jq command to print a neat table of deployment names + versions from prefect deployment ls --output json.Richard Sundqvist
06/30/2026, 9:25 AMRichard Sundqvist
06/30/2026, 9:26 AMMarvin
06/30/2026, 9:26 AMMarvin
06/30/2026, 9:26 AMbash
prefect deployment ls --output json | jq -r '.[] | [.name, .version] | @tsv'
Or with headers:
bash
echo -e "DEPLOYMENT\tVERSION"
prefect deployment ls --output json | jq -r '.[] | [.name, .version] | @tsv'
If you want flow/deployment formatting:
bash
prefect deployment ls --output json | jq -r '.[] | ["\(.flow_name)/\(.name)", .version] | @tsv'
If jq isn’t installed, I can give you a pure Python one-liner instead.Richard Sundqvist
06/30/2026, 9:27 AMMarvin
06/30/2026, 9:27 AMMarvin
06/30/2026, 9:27 AMversion, and deployment/job config can include image details.
- But there’s currently no built-in deployments table support for:
- showing version
- showing image/tag
- comparing “current” vs “outdated”
- highlighting stale deployments in the list
If you want, this is a good candidate for a GitHub feature request. A concise request could ask for:
- optional columns in /deployments for:
- deployment version
- image / image tag
- last updated
- visual stale/outdated indicator, for example:
- deployment version differs from latest deployed version for that flow
- image tag differs from latest image used in the work pool/deployment
- deployment code or infra metadata changed since last successful run
- column customization / saved table views
You can open one here:
- Create a Prefect issue
If you want, I can help draft a strong feature request you can paste directly into GitHub.