Skip to content

Commit a6862e6

Browse files
committed
switch to using newest Ubuntu image for google cloud images
1 parent cdea4ab commit a6862e6

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

src/packages/server/compute/cloud/google-cloud/create-image.ts

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -303,10 +303,15 @@ function getConf({
303303
}
304304
}
305305

306+
/*
307+
ubuntu-2404-noble-amd64-v20240701a
308+
ubuntu-2404-noble-arm64-v20240701a
309+
*/
310+
306311
function getSourceImage(arch: Architecture) {
307-
return `projects/ubuntu-os-cloud/global/images/ubuntu-2204-jammy-${
308-
arch == "arm64" ? "arm64-" : ""
309-
}v20230829`;
312+
return `projects/ubuntu-os-cloud/global/images/ubuntu-2404-noble-${
313+
arch == "arm64" ? "arm" : "amd"
314+
}64-v20240701a`;
310315
}
311316

312317
const LOGDIR = "logs";

0 commit comments

Comments
 (0)