We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b526649 commit d918477Copy full SHA for d918477
axlearn/cloud/gcp/vm.py
@@ -376,7 +376,7 @@ def list_disk_images(creds: Credentials) -> list[str]:
376
)
377
image_names = []
378
for el in images["items"]:
379
- if "ubuntu-2004" in el["name"] and "arm" not in el["name"]:
+ if "ubuntu-2204" in el["name"] and "arm" not in el["name"]:
380
image_names.append(el["name"])
381
return [f"projects/{image_project}/global/images/{name}" for name in image_names]
382
0 commit comments