https://prefect.io logo
Title
c

Clovis

10/07/2022, 8:58 AM
Hi guys ! Quick question here, I see that the fresh new version Prefect 2.5 was available with new blocks like
GCloudRun
. Great 🎉 ! However, after connecting to my prefect cloud environment no new block available and I could not find the way to find the Cloud UI current version. So my question was how can I retrieve the version from the cloud , and is there a way to update / rollback it manually ?
1
a

Anna Geller

10/07/2022, 10:38 AM
Yeah you would need to register the block, as described in the release post
prefect block register -m prefect_gcp.credentials
prefect block register -m prefect_gcp.cloud_run
Cloud (server-side) is always on the latest version and supports all old clients automatically to check which version your client is on, run:
prefect version
to upgrade or downgrade your client, specify the version you want via pip, e.g.:
pip install prefect==2.5
or:
pip install prefect==2.4.5
🙏 1
p

Peyton Runyan

10/07/2022, 11:00 AM
Hi there! I'm one of the devs that worked on the Cloud Run Job. I fixed a bug yesterday that is required for Cloud Run Jobs to function correctly, but it hasn't been released to the package yet. If you'd like to try Cloud Run Jobs, I recommend installing
prefect-gcp
from the main branch on github.
pip install git+<https://github.com/PrefectHQ/prefect-gcp.git>
:thank-you: 2
👍 1
c

Clovis

10/07/2022, 12:34 PM
Great ! Thank you both for this information 🙏
👍 1