mirror of
https://github.com/mrlesmithjr/ansible-manage-lvm.git
synced 2025-12-14 05:45:22 +03:00
30 lines
918 B
YAML
30 lines
918 B
YAML
---
|
|
- name: create_vg | creating new LVM volume group(s)
|
|
community.general.lvg:
|
|
vg: "{{ vg.vgname }}"
|
|
pvs: "{{ vg.disks | join(',') }}"
|
|
state: present
|
|
become: true
|
|
when:
|
|
- vg.create is defined
|
|
- vg.create|bool
|
|
|
|
### workaround: auto pvresize waiting for upgrade to new module supporting integrated pvresize
|
|
### ref: https://docs.ansible.com/ansible/3/collections/community/general/lvg_module.html
|
|
- name: create_vg | pvresize to max available free space
|
|
ansible.builtin.command: "pvresize {{ pv }}"
|
|
loop: "{{ vg.disks | default([]) }}"
|
|
loop_control:
|
|
loop_var: pv
|
|
changed_when: false
|
|
when:
|
|
- vg.create is defined
|
|
- vg.create|bool
|
|
- pvresize_to_max|bool
|
|
|
|
- name: manage_lvm | loop over logical volume group(s) to create logical volumes
|
|
ansible.builtin.include_tasks: create_lv.yml
|
|
loop: "{{ vg.lvnames | default([]) }}"
|
|
loop_control:
|
|
loop_var: lv
|