From 5d304d29579e28265d8b236e36bf6063f11f4b8b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Budai?= Date: Wed, 16 Feb 2022 09:58:36 +0100 Subject: [PATCH] packer: make the worker image smaller MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This should save us some money. 10 GB is the size of the underlying RHEL 8.5 AMI so this should be the minimum. Signed-off-by: Ondřej Budai --- templates/packer/composer.pkr.hcl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/packer/composer.pkr.hcl b/templates/packer/composer.pkr.hcl index a37af61e6..850cf6e65 100644 --- a/templates/packer/composer.pkr.hcl +++ b/templates/packer/composer.pkr.hcl @@ -16,7 +16,7 @@ source "amazon-ebs" "image_builder" { launch_block_device_mappings { delete_on_termination = "true" device_name = "/dev/sda1" - volume_size = 25 + volume_size = 10 volume_type = "gp2" }