<@ULVA73B9P> give me the current stable version fo...
# ask-marvin
j
@Marvin give me the current stable version for prefect server and worker. I'm running worker on aks
m
thought for 46.9 seconds
Assuming you’re on Prefect 3.x: the current stable Prefect version is 3.6.22. Server and workers should be on the same version. - Prefect Server: 3.6.22 - Docker image examples:
prefecthq/prefect:3.6.22
(or pin a Python variant like
prefecthq/prefect:3.6.22-python3.11
) - Kubernetes worker (AKS): 3.6.22 - Use the same image tag in your work pool’s base job template or your Helm/manifest Links: - Full changelog for 3.6.22: https://github.com/PrefectHQ/prefect/compare/3.6.21...3.6.22 - Releases overview: https://github.com/PrefectHQ/prefect/releases - Docker images: https://hub.docker.com/r/prefecthq/prefect/tags Quick commands: - Check your version:
Copy code
prefect version
- Upgrade to this exact version:
Copy code
pip install -U "prefect==3.6.22"
If you want, I can walk you through updating your AKS worker (e.g., editing the Kubernetes work pool’s base job template to bump the image tag) or your Server deployment. How are you deploying Server (Helm/manifest) and managing the worker image in AKS today?