summaryrefslogtreecommitdiffstats
path: root/host_vars/proxmox-iso.local.yml.example
diff options
context:
space:
mode:
authorAhmed Abdelhalim <[email protected]>2026-07-03 17:57:49 +0200
committerAhmed Abdelhalim <[email protected]>2026-07-03 17:57:49 +0200
commit25c5e74aebe943080067baae94dc181d0c165961 (patch)
treea067fdfdbcc157632f666f2c4afa5f5cd7318184 /host_vars/proxmox-iso.local.yml.example
parentb9bfb43360e588e008e1f3279b99b2523665d422 (diff)
Update pve partitions to create a local-lvm partition
Diffstat (limited to 'host_vars/proxmox-iso.local.yml.example')
-rw-r--r--host_vars/proxmox-iso.local.yml.example10
1 files changed, 9 insertions, 1 deletions
diff --git a/host_vars/proxmox-iso.local.yml.example b/host_vars/proxmox-iso.local.yml.example
index 2775848..169b6ee 100644
--- a/host_vars/proxmox-iso.local.yml.example
+++ b/host_vars/proxmox-iso.local.yml.example
@@ -26,9 +26,17 @@ partition_swap:
partition_root:
num: 3
name: "pve-root"
- part_start: "9.0GiB"
+ part_start: "69.0GiB"
part_end: "100%"
fstype: "ext4"
dev: "{{ partition_disk }}3"
mount_path: "/mnt"
+partition_extras:
+ - num: 4
+ name: "pve-data"
+ flags: ["LVM"]
+ part_start: "69.0GiB"
+ part_end: "100%"
+ fstype: "lvm"
+ dev: "{{ partition_disk }}4"
configure_playbook_dir: "../ansible-distro-configure"