1a3de5e799
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
14 lines
404 B
YAML
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"
|