Merge pull request #175 from flatcar-linux/kai/aws-arm

jenkins/kola/aws.sh: use larger arm64 instance type for kubeadm
This commit is contained in:
Kai Lüke 2021-10-21 14:11:19 +02:00 committed by GitHub
commit bf4e013ac7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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