From 6e820fcd291caa3643369da1a8f8c98ec011cf62 Mon Sep 17 00:00:00 2001 From: Fedor Korotkov Date: Wed, 31 Aug 2022 15:55:25 -0400 Subject: [PATCH] Add extra spaceto base image (#51) Right now the base image has 10Gb free which is very conservative if you want to compile much of thing or install Node.js modules. The disk is compressed when pushed so this change shouldn't affect the size of pull that much. Fixes https://github.com/cirruslabs/cirrus-ci-docs/issues/1065 --- templates/base.pkr.hcl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/base.pkr.hcl b/templates/base.pkr.hcl index 40465a5..b0fd942 100644 --- a/templates/base.pkr.hcl +++ b/templates/base.pkr.hcl @@ -17,7 +17,7 @@ source "tart-cli" "tart" { vm_name = "${var.macos_version}-base" cpu_count = 4 memory_gb = 8 - disk_size_gb = 30 + disk_size_gb = 40 ssh_password = "admin" ssh_username = "admin" ssh_timeout = "120s"