From 2de4321b014e8f95b7d7450f78048ffaa7a1a703 Mon Sep 17 00:00:00 2001 From: Ahmed Abdelhalim Date: Sun, 3 May 2026 23:37:30 +0200 Subject: Add proxmox install support Using debian live ISO instead of proxmox live ISO, since using the proxmox ISO didn't allow automating the setup after connecting to the network. --- host_vars/proxmox-iso.local.yml.example | 34 +++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 host_vars/proxmox-iso.local.yml.example (limited to 'host_vars/proxmox-iso.local.yml.example') diff --git a/host_vars/proxmox-iso.local.yml.example b/host_vars/proxmox-iso.local.yml.example new file mode 100644 index 0000000..2775848 --- /dev/null +++ b/host_vars/proxmox-iso.local.yml.example @@ -0,0 +1,34 @@ +--- +hostname: "pve.local" +bootstrap_proxmox: true +partition_disk: "/dev/sda" +partition_wipe: true +partition_boot: + num: 1 + name: "boot" + flags: [boot, esp] + part_start: "0%" + part_end: "1.0GiB" + fstype: "vfat" + fstype_opts: "-F 32" + dev: "{{ partition_disk }}1" + mount_path: "/mnt/boot/efi" + fstab_opts: "defaults,nodev,nosuid,noexec,umask=0077" +partition_swap: + num: 2 + name: "swap" + flags: [swap] + part_start: "1.0GiB" + part_end: "9.0GiB" + fstype: "ext4" + dev: "{{ partition_disk }}2" + mount_path: "none" +partition_root: + num: 3 + name: "pve-root" + part_start: "9.0GiB" + part_end: "100%" + fstype: "ext4" + dev: "{{ partition_disk }}3" + mount_path: "/mnt" +configure_playbook_dir: "../ansible-distro-configure" -- cgit v1.2.3