From f954fd25b3f40d8859c984a5daa4f2c0b9c2846c Mon Sep 17 00:00:00 2001 From: Jose Date: Fri, 12 Dec 2025 20:15:39 +0100 Subject: [PATCH] =?UTF-8?q?fix=20=F0=9F=90=9B:=20Adjust=20VM=20memory=20fo?= =?UTF-8?q?r=20'dc'=20template?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This commit updates the VM memory allocation specifically for the 'dc' template, resolving an issue where memory was misconfigured. It also removes the outdated 'vm-01' entry, streamlining the configuration and ensuring optimal performance. --- tasks/testing.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tasks/testing.yml b/tasks/testing.yml index 07d2f45..3871d93 100644 --- a/tasks/testing.yml +++ b/tasks/testing.yml @@ -64,7 +64,6 @@ proxmox_template_vm_proxmox_api_token_id: "{{ proxmox_api_token_id }}" # From Ansible vault proxmox_template_vm_proxmox_api_token_secret: "{{ proxmox_api_token_secret }}" # From Ansible vault - # Optional customizations for debian proxmox_template_vm_debian_name: debian-template proxmox_template_vm_debian_memory: 2048 @@ -89,10 +88,10 @@ # VMs to be created create_proxmox_vms_list: - - name: vm-01 + - name: dc template: 9412 vmid: 1000 - memory: 8192 + memory: 2048 cores: 2 node: node0 # The hostname of the node that the VM will be created on ciuser: "{{ ciuser }}"