Skip to content

Commit 0b64272

Browse files
committed
Address comments by @dwlehman regarding disk syntax
1 parent 05e6c3c commit 0b64272

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

README.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,10 @@ This specifies the type of pool to manage.
2525
Valid values for `type`: `lvm`.
2626

2727
##### `disks`
28-
A list which specifies the set of disks to use as backing storage for the pool
29-
(a `/dev/` or `/dev/mapper/` prefix is prepended if the name is not an absolute path).
28+
A list which specifies the set of disks to use as backing storage for the pool.
29+
Supported identifiers include: device node (like `/dev/sda` or `/dev/mapper/mpathb`),
30+
device node basename (like `sda` or `mpathb`), /dev/disk/ symlink
31+
(like `/dev/disk/by-id/wwn-0x5000c5005bc37f3f`).
3032

3133
##### `volumes`
3234
This is a list of volumes that belong to the current pool. It follows the
@@ -85,8 +87,8 @@ Example Playbook
8587
storage_pools:
8688
- name: app
8789
disks:
88-
- /dev/sdb
89-
- /dev/sdc
90+
- sdb
91+
- sdc
9092
volumes:
9193
- name: shared
9294
size: "100 GiB"

0 commit comments

Comments
 (0)