2017-07-26 02:46:22 +08:00
|
|
|
---
|
|
|
|
|
|
|
|
- hosts: osds
|
|
|
|
gather_facts: false
|
|
|
|
become: yes
|
|
|
|
tasks:
|
|
|
|
|
|
|
|
- name: create physical volume
|
2017-08-05 04:57:56 +08:00
|
|
|
command: pvcreate /dev/sdb
|
2017-07-26 02:46:22 +08:00
|
|
|
failed_when: false
|
|
|
|
|
|
|
|
- name: create volume group
|
2017-08-05 04:57:56 +08:00
|
|
|
command: vgcreate test_group /dev/sdb
|
2017-07-26 02:46:22 +08:00
|
|
|
failed_when: false
|
|
|
|
|
|
|
|
- name: create logical volume
|
|
|
|
command: lvcreate --yes -l 100%FREE -n test_volume test_group
|
|
|
|
failed_when: false
|