From 048a63ec5c647b920509af58e9148e4ef4bff1f5 Mon Sep 17 00:00:00 2001 From: Jvst Me Date: Thu, 24 Sep 2026 01:24:12 +0200 Subject: [PATCH] Fix GCP `a3-edgegpu-8g` and `a3-highgpu-8g` Upgrade the COS image used for these instance types to the currently [recommended](https://docs.cloud.google.com/compute/docs/gpus/gpudirect#create-high-edge-instances) `cos-121-lts` family that comes with a GLIBC version (2.37) compatible with `dstack-shim`. --- src/dstack/_internal/core/backends/gcp/compute.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dstack/_internal/core/backends/gcp/compute.py b/src/dstack/_internal/core/backends/gcp/compute.py index d40647604..8ab25584f 100644 --- a/src/dstack/_internal/core/backends/gcp/compute.py +++ b/src/dstack/_internal/core/backends/gcp/compute.py @@ -1580,7 +1580,7 @@ def _get_image(instance_type_name: str, gpu_name: Optional[str]) -> GCPImage: is_ufw_installed = False elif instance_type_name in ["a3-edgegpu-8g", "a3-highgpu-8g"]: return GCPImage( - id="projects/cos-cloud/global/images/cos-105-17412-535-78", + id="projects/cos-cloud/global/images/family/cos-121-lts", is_ufw_installed=False, ) elif gpu_name is not None: