From 4ef36aed0c21c4056fc9ffe594c80585a7a8cbc4 Mon Sep 17 00:00:00 2001 From: Niels de Vos Date: Thu, 6 May 2021 18:25:11 +0200 Subject: [PATCH] ci: increase memory for minikube VM to 14GB The e2e tests very regulary hit a timeout where the Kubernetes API becomes unreachable for 3 minutes. Hopefully it helps when more RAM is available to the VM. Updates: #1969 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 794065d61..7a856061e 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="12288" + export MEMORY="14336" 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'}