diff options
| author | Ahmed Abdelhalim <[email protected]> | 2026-07-06 01:10:20 +0200 |
|---|---|---|
| committer | Ahmed Abdelhalim <[email protected]> | 2026-07-06 01:10:20 +0200 |
| commit | 0e7e66f00da0b37ef68cca0d13a1588a30cb9235 (patch) | |
| tree | eb3579b7860cf7f5b1d971d0b2059d9156b82acc /roles | |
| parent | ca4adf483fffc127729c2dcb06877b412eee6118 (diff) | |
Use conventional storage name
Diffstat (limited to 'roles')
| -rw-r--r-- | roles/pve-storage/defaults/main.yml | 2 | ||||
| -rw-r--r-- | roles/pve-storage/meta/argument_specs.yml | 2 | ||||
| -rw-r--r-- | roles/pve-storage/tasks/main.yml | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/roles/pve-storage/defaults/main.yml b/roles/pve-storage/defaults/main.yml index 77499ce0..0c72131d 100644 --- a/roles/pve-storage/defaults/main.yml +++ b/roles/pve-storage/defaults/main.yml @@ -1,4 +1,4 @@ --- pve_storage_device: "/dev/sda4" -pve_storage_name: "pve" +pve_storage_name: "vmdata" pve_storage_pool: "data" diff --git a/roles/pve-storage/meta/argument_specs.yml b/roles/pve-storage/meta/argument_specs.yml index 7f502ef7..dbc6773d 100644 --- a/roles/pve-storage/meta/argument_specs.yml +++ b/roles/pve-storage/meta/argument_specs.yml @@ -9,7 +9,7 @@ argument_specs: pve_storage_name: type: "str" description: "LVM volume group name" - default: "pve" + default: "vmdata" pve_storage_pool: type: "str" description: "LVM thin pool name within the volume group" diff --git a/roles/pve-storage/tasks/main.yml b/roles/pve-storage/tasks/main.yml index 069766e7..98518587 100644 --- a/roles/pve-storage/tasks/main.yml +++ b/roles/pve-storage/tasks/main.yml @@ -15,7 +15,7 @@ vg: "{{ pve_storage_name }}" lv: "{{ pve_storage_pool }}" size: "100%FREE" - opts: "--type thin-pool" + opts: "--type thin-pool --poolmetadatasize 1G" shrink: false state: present tags: |
