From 67ed422aaf8434b5c1554785d195aecba96ae05b Mon Sep 17 00:00:00 2001 From: Jerome Petazzoni Date: Fri, 28 Sep 2018 18:24:14 -0500 Subject: [PATCH] Bump up EBS size to 20G for Portworx --- prepare-vms/lib/infra/aws.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/prepare-vms/lib/infra/aws.sh b/prepare-vms/lib/infra/aws.sh index 44f8d781..3cdff859 100644 --- a/prepare-vms/lib/infra/aws.sh +++ b/prepare-vms/lib/infra/aws.sh @@ -43,6 +43,7 @@ infra_start() { --count $COUNT \ --instance-type ${AWS_INSTANCE_TYPE-t2.medium} \ --client-token $TAG \ + --block-device-mapping 'DeviceName=/dev/sda1,Ebs={VolumeSize=20}' \ --image-id $AMI) reservation_id=$(echo "$result" | head -1 | awk '{print $2}') info "Reservation ID: $reservation_id"