From 322a7e4e08e707ee82ecb76fbb1682f8455b4b28 Mon Sep 17 00:00:00 2001 From: Niels de Vos Date: Mon, 15 Feb 2021 10:29:41 +0100 Subject: [PATCH] ci: request minikube VMs with 12GB RAM There are timeouts happening where the logs do not show sufficient output to diagnose the issue. These timeouts suggests that something inside the minikube VM is not running as expected. Increasing the RAM to 12GB might help. The bare-metal systems in the CentOS CI have a minimum of 16GB, so running a single VM with 12GB should be possible. See-also: https://wiki.centos.org/QaWiki/PubHardware Updates: #1867 Signed-off-by: Niels de Vos --- single-node-k8s.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/single-node-k8s.sh b/single-node-k8s.sh index 212979712..c3c32bc97 100755 --- a/single-node-k8s.sh +++ b/single-node-k8s.sh @@ -65,7 +65,7 @@ function set_env() { export GO111MODULE="on" export TEST_COVERAGE="stdout" export VM_DRIVER="kvm2" - export MEMORY="8192" + export MEMORY="12288" export CEPH_CSI_RUN_ALL_TESTS=true # downloading rook images is sometimes slow, extend timeout to 15 minutes export ROOK_VERSION=${ROOK_VERSION:-'v1.3.9'}