From 5a7555bbe1e4d42f037d777dabd8118d353a4616 Mon Sep 17 00:00:00 2001 From: Lucian Petrut Date: Wed, 8 Feb 2023 13:19:12 +0200 Subject: [PATCH] increase vm memory for windows test jobs Windows test jobs use two vms: a windows vm that takes 8gb of ram and a linux one that currently uses 32gb of ram. We're using memstore with 5gb per osd. It seems that the linux vm is running out of memory, which is why the OSDs can get terminated while running the tests. We'll go ahead and increase the linux vm memory to 64gb. Signed-off-by: Lucian Petrut --- scripts/ceph-windows/setup_libvirt_ubuntu_vm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/ceph-windows/setup_libvirt_ubuntu_vm b/scripts/ceph-windows/setup_libvirt_ubuntu_vm index 9a27528a..48a69ad0 100644 --- a/scripts/ceph-windows/setup_libvirt_ubuntu_vm +++ b/scripts/ceph-windows/setup_libvirt_ubuntu_vm @@ -7,7 +7,7 @@ if [[ -z $LIBVIRT_DIR ]]; then echo "ERROR: The env variable LIBVIRT_DIR is not export UBUNTU_VM_IMAGE_URL=${UBUNTU_VM_IMAGE_URL:-"https://cloud-images.ubuntu.com/minimal/releases/jammy/release/ubuntu-22.04-minimal-cloudimg-amd64.img"} export UBUNTU_VM_NAME=${UBUNTU_VM_NAME:-"ceph-ubuntu-vstart-${JOB_NAME}-${BUILD_ID}"} export UBUNTU_VM_VCPUS="$(nproc)" # use all the CPU cores avaiable on the host -export UBUNTU_VM_MEMORY="32768" # 32 GB +export UBUNTU_VM_MEMORY="65536" # 64 GB export UBUNTU_SSH_USER="ubuntu" # -- 2.47.3