From 0bd6d1aae5ff9219a1136518639e0e5ff2ac6903 Mon Sep 17 00:00:00 2001 From: Kai Lueke Date: Thu, 21 Oct 2021 14:03:39 +0200 Subject: [PATCH] jenkins/kola/aws.sh: use larger arm64 instance type for kubeadm Currently the kubeadm tests fail on arm64 because the instance type only offers 1 vCPU: cluster.go:117: error execution phase preflight: [preflight] Some fatal errors occurred: cluster.go:117: [ERROR NumCPU]: the number of available CPUs 1 is less than the required 2 Switch to the next larger instance type which has 2 vCPUS. --- jenkins/kola/aws.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jenkins/kola/aws.sh b/jenkins/kola/aws.sh index bf7d3f225e..99a741ae57 100755 --- a/jenkins/kola/aws.sh +++ b/jenkins/kola/aws.sh @@ -8,7 +8,7 @@ NAME="jenkins-${JOB_NAME##*/}-${BUILD_NUMBER}" if [[ "${AWS_INSTANCE_TYPE}" != "" ]]; then instance_type="${AWS_INSTANCE_TYPE}" elif [[ "${BOARD}" == "arm64-usr" ]]; then - instance_type="a1.medium" + instance_type="a1.large" elif [[ "${BOARD}" == "amd64-usr" ]]; then instance_type="t3.small" fi