The following pull request was submitted through Github. It can be accessed and reviewed at: https://github.com/lxc/lxd/pull/7579
This e-mail was sent by the LXC bot, direct replies will not reach the author unless they happen to be subscribed to this list. === Description (from pull-request) === The UEFI nvram on aarch64 is 64MB so wasn't fitting in our previous value when stored on a block based storage driver. Signed-off-by: Stéphane Graber <stgra...@ubuntu.com>
From 1182a8a87ed7b2b135939b39a6d7a46aad36da96 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Graber?= <stgra...@ubuntu.com> Date: Tue, 23 Jun 2020 19:18:26 -0400 Subject: [PATCH] lxd/storage/drivers: Bump VM fs size to 100MB MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The UEFI nvram on aarch64 is 64MB so wasn't fitting in our previous value when stored on a block based storage driver. Signed-off-by: Stéphane Graber <stgra...@ubuntu.com> --- lxd/storage/drivers/volume.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lxd/storage/drivers/volume.go b/lxd/storage/drivers/volume.go index e0805aafc9..a8e373bb00 100644 --- a/lxd/storage/drivers/volume.go +++ b/lxd/storage/drivers/volume.go @@ -20,7 +20,7 @@ const tmpVolSuffix = ".lxdtmp" const defaultBlockSize = "10GB" // vmBlockFilesystemSize is the size of a VM block volume's associated filesystem volume. -const vmBlockFilesystemSize = "50MB" +const vmBlockFilesystemSize = "100MB" // DefaultFilesystem filesytem to use for block devices by default. const DefaultFilesystem = "ext4"
_______________________________________________ lxc-devel mailing list lxc-devel@lists.linuxcontainers.org http://lists.linuxcontainers.org/listinfo/lxc-devel