From 3d834a1f263bce0456cddd3a3ab15aa3dc478f2f Mon Sep 17 00:00:00 2001 From: Prashanth Sundararaman Date: Thu, 2 Apr 2020 09:27:19 -0400 Subject: [PATCH] libvirt: Bump bootstrap memory to 5G On ppc64le there were OOM kills being observed during the bootstrap process because of insufficient memory and bumping the memory seemed to solve the problem. The libvirt defaults for the master and worker memory are 7G and 5G respectively, so setting the boostrap default to 5G. --- data/data/libvirt/bootstrap/main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/data/libvirt/bootstrap/main.tf b/data/data/libvirt/bootstrap/main.tf index 2b70f448b34..5e803a667c4 100644 --- a/data/data/libvirt/bootstrap/main.tf +++ b/data/data/libvirt/bootstrap/main.tf @@ -13,7 +13,7 @@ resource "libvirt_ignition" "bootstrap" { resource "libvirt_domain" "bootstrap" { name = "${var.cluster_id}-bootstrap" - memory = "2048" + memory = "5120" vcpu = "2"