kayobe/releasenotes/notes/manage-lvm-0.1.4-d33b398060232874.yaml
Pierre Riteau 1a3de5e799 Update manage-lvm role to v0.1.4
This role now expects disks to be passed as a list instead of a
comma-separated string.

This commit updates group variables to stop transforming disk lists to
comma-separated strings and adds a check for users overriding LVM
variables. The playbook is also tagged as upgrade-check.

Change-Id: Ia8001c28a8be034ae79a1c584beb40bc66891db3
2019-01-04 11:55:15 +00:00

14 lines
404 B
YAML

---
upgrade:
- |
The manage-lvm Ansible role was upgraded to version v0.1.4. If you are
overriding variables to customize definitions of volume groups, you need to
change the value of the ``disks`` parameter from a comma-separated string to a
list. For example, change ``disks: "/dev/sda,/dev/sdb"`` to:
.. code-block:: text
disks:
- "/dev/sda"
- "/dev/sdb"