From 5198e6f74012bbae68ce7fd7674363e39788b339 Mon Sep 17 00:00:00 2001 From: Gerhard Lazu Date: Sat, 30 Dec 2023 18:34:49 +0000 Subject: [PATCH] Default changelog VM size to performance-4x Same as the current production config. Signed-off-by: Gerhard Lazu --- magefiles/image/fly.go | 1 + 1 file changed, 1 insertion(+) diff --git a/magefiles/image/fly.go b/magefiles/image/fly.go index d769a989f9..0b40dfcacd 100644 --- a/magefiles/image/fly.go +++ b/magefiles/image/fly.go @@ -31,6 +31,7 @@ func (image *Image) Deploy() *Image { WithExec([]string{ "deploy", "--image", image.ProductionImageRef(), + "--vm-size", "performance-4x", }) return image.OK()