tests: create 2 partitions on /dev/sdc for lvm scenario testing

Signed-off-by: Andrew Schoen <aschoen@redhat.com>
pull/1841/head
Andrew Schoen 2017-08-30 15:53:28 -05:00
parent 6ae8219018
commit d026e04470
1 changed files with 33 additions and 2 deletions

View File

@ -13,6 +13,37 @@
command: vgcreate test_group /dev/sdb
failed_when: false
- name: create logical volume
command: lvcreate --yes -l 100%FREE -n test_volume test_group
- name: create logical volume 1
command: lvcreate --yes -l 50%FREE -n data-lv1 test_group
failed_when: false
- name: create logical volume 2
command: lvcreate --yes -l 50%FREE -n data-lv2 test_group
failed_when: false
- name: partition /dev/sdc for journals
parted:
device: /dev/sdc
number: 1
part_start: 0%
part_end: 50%
unit: '%'
state: present
- name: partition /dev/sdc for journals
parted:
device: /dev/sdc
number: 2
part_start: 50%
part_end: 100%
unit: '%'
state: present
- name: create journals vg from /dev/sdc2
lvg:
vg: journals
pvs: /dev/sdc2
- name: create journal1 lv
command: lvcreate --yes -l 100%FREE -n journal1 journals
failed_when: false