From 40838176901554ca9b2147683a5be1d4fd4f34ca Mon Sep 17 00:00:00 2001 From: Kathryn Baldauf Date: Mon, 17 Jun 2024 17:00:48 -0700 Subject: [PATCH] Increasing the memory size as Azure Linux requires more memory to run Signed-off-by: Kathryn Baldauf --- cmd/runhcs/create-scratch.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/runhcs/create-scratch.go b/cmd/runhcs/create-scratch.go index 07bdbb2f43..34a7500a5e 100644 --- a/cmd/runhcs/create-scratch.go +++ b/cmd/runhcs/create-scratch.go @@ -54,8 +54,8 @@ var createScratchCommand = cli.Command{ opts := uvm.NewDefaultOptionsLCOW("createscratch-uvm", context.GlobalString("owner")) - // 256MB with boot from vhd supported. - opts.MemorySizeInMB = 256 + // 512MB with boot from vhd supported. + opts.MemorySizeInMB = 512 // Default SCSI controller count is 4, we don't need that for this UVM, // bring it back to 1 to avoid any confusion with SCSI controller numbers. opts.SCSIControllerCount = 1