kayobe/ansible/lvm.yml
Mark Goddard 1260f9a87e Add support for configuration of LVM PVs, VGs and LVs
Currently we configure the seed with a single VG containing a volume for Docker volumes.
2017-03-15 09:44:15 +00:00

11 lines
253 B
YAML

---
- name: Ensure LVM configuration is applied
hosts: seed:controllers
roles:
- role: mrlesmithjr.manage-lvm
manage_lvm: True
become: True
when:
- "{{ lvm_groups is defined}}"
- "{{ lvm_groups | length > 0 }}"