From 1c3c74d7fe977ef7d0eed493d77647e1fda7bc72 Mon Sep 17 00:00:00 2001 From: root Date: Mon, 15 Jul 2024 14:30:27 +0000 Subject: [PATCH] [ubuntu24] feat: set memory to 4gb and timeout to 20 minutes --- ubuntu24/packer.pkr.hcl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ubuntu24/packer.pkr.hcl b/ubuntu24/packer.pkr.hcl index 1d3dad1..4800636 100644 --- a/ubuntu24/packer.pkr.hcl +++ b/ubuntu24/packer.pkr.hcl @@ -90,7 +90,7 @@ source "proxmox-iso" "template" { # specs cores = "2" - memory = "2048" + memory = "4096" # storage disks { @@ -117,7 +117,7 @@ source "proxmox-iso" "template" { proxmox_url = "${var.proxmox_url}" scsi_controller = "virtio-scsi-single" ssh_port = 22 - ssh_timeout = "10m" + ssh_timeout = "20m" ssh_username = "${var.template_username}" ssh_password = "${var.template_password}" template_description = "${var.template_description}"