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 cdea4ab commit a6862e6Copy full SHA for a6862e6
src/packages/server/compute/cloud/google-cloud/create-image.ts
@@ -303,10 +303,15 @@ function getConf({
303
}
304
305
306
+/*
307
+ubuntu-2404-noble-amd64-v20240701a
308
+ubuntu-2404-noble-arm64-v20240701a
309
+*/
310
+
311
function getSourceImage(arch: Architecture) {
- return `projects/ubuntu-os-cloud/global/images/ubuntu-2204-jammy-${
- arch == "arm64" ? "arm64-" : ""
- }v20230829`;
312
+ return `projects/ubuntu-os-cloud/global/images/ubuntu-2404-noble-${
313
+ arch == "arm64" ? "arm" : "amd"
314
+ }64-v20240701a`;
315
316
317
const LOGDIR = "logs";
0 commit comments