Skip to content
This repository has been archived by the owner on Jun 27, 2024. It is now read-only.

Commit

Permalink
fix: Proxmox hosts, AAD secret updated (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
lholota authored Feb 13, 2024
1 parent 5f31eee commit 34ed5f5
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions playbooks/lab-cluster.yml
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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:
Expand All @@ -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
Expand Down

0 comments on commit 34ed5f5

Please sign in to comment.