From 34ed5f5ada3fdab5b3addb14a2b2d08303e9eabe Mon Sep 17 00:00:00 2001 From: LH Date: Tue, 13 Feb 2024 13:50:49 +0100 Subject: [PATCH] fix: Proxmox hosts, AAD secret updated (#3) --- playbooks/lab-cluster.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/playbooks/lab-cluster.yml b/playbooks/lab-cluster.yml index 50306c7..46c0d47 100644 --- a/playbooks/lab-cluster.yml +++ b/playbooks/lab-cluster.yml @@ -1,5 +1,5 @@ - name: Create virtual machines for Lab cluster - hosts: all + hosts: proxmox become: true become_method: ansible.builtin.sudo any_errors_fatal: true @@ -62,8 +62,8 @@ boot: "order=scsi1;scsi0" bios: ovmf startup: down=60 - # # required due to a bug: https://forum.proxmox.com/threads/kernel-panic-after-resizing-a-clone.93738/ - # # which causes kernel panic after resizing the os disk + # required due to a bug: https://forum.proxmox.com/threads/kernel-panic-after-resizing-a-clone.93738/ + # which causes kernel panic after resizing the os disk serial: serial0: socket scsi: @@ -83,8 +83,8 @@ vcpus: "8" sockets: "1" cores: "8" - memory: "18432" - balloon: "18432" + memory: "{{ index == 2 | ternary('16384', '18432') }}" # Third node with lower memory to simulate real production env + balloon: "0" state: present - name: Wait for VMs to be created