From 68e4900abef33b01020347de31ce7418c8ae64a1 Mon Sep 17 00:00:00 2001 From: Dalton Hubble Date: Thu, 15 Oct 2020 20:10:59 -0700 Subject: [PATCH] Reset QEM/KVM memory to 2GB for local nodes * https://github.com/coreos/fedora-coreos-docs/pull/196 --- scripts/libvirt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/libvirt b/scripts/libvirt index cc2f6cc5..fff6bb0e 100755 --- a/scripts/libvirt +++ b/scripts/libvirt @@ -1,7 +1,7 @@ #!/usr/bin/env bash # Manage VM nodes which have a specific set of hardware attributes. -VM_MEMORY=${VM_MEMORY:-3072} +VM_MEMORY=${VM_MEMORY:-2048} VM_DISK=${VM_DISK:-10} if [ "$EUID" -ne 0 ]