summaryrefslogtreecommitdiff
path: root/openstack/usr/share/openstack/cinder-lvs.yml
diff options
context:
space:
mode:
authorRichard Maw <richard.maw@codethink.co.uk>2015-04-15 07:16:42 +0000
committerFrancisco Redondo Marchena <francisco.marchena@codethink.co.uk>2015-04-16 16:30:44 +0000
commit8f307fcf4cb9b352d4c9c5c4f245601e48641469 (patch)
tree9ee1dbd999ec5e46e7471b1570447c139564800f /openstack/usr/share/openstack/cinder-lvs.yml
parentc975815f5810553709ca967e52bbfa5fc61d3216 (diff)
downloaddefinitions-8f307fcf4cb9b352d4c9c5c4f245601e48641469.tar.gz
OpenStack: Split Cinder into config, db and lv setupbaserock/openstack-in-baserock-3-nodes
Change-Id: Iae387e39c4a62ef608496d31c748493fa88ce3e1
Diffstat (limited to 'openstack/usr/share/openstack/cinder-lvs.yml')
-rw-r--r--openstack/usr/share/openstack/cinder-lvs.yml21
1 files changed, 21 insertions, 0 deletions
diff --git a/openstack/usr/share/openstack/cinder-lvs.yml b/openstack/usr/share/openstack/cinder-lvs.yml
new file mode 100644
index 00000000..7a91a306
--- /dev/null
+++ b/openstack/usr/share/openstack/cinder-lvs.yml
@@ -0,0 +1,21 @@
+---
+- hosts: localhost
+ vars_files:
+ - "/etc/openstack/cinder.conf"
+ tasks:
+ - name: Check that CINDER_DEVICE exists
+ stat:
+ path: "{{ CINDER_DEVICE }}"
+ register: cinder_device_stats
+ failed_when: cinder_device_stats.stat.exists == false
+
+ - name: Configure LVM group for cinder
+ lvg:
+ vg: cinder-volumes
+ pvs: "{{ CINDER_DEVICE }}"
+
+ - lineinfile:
+ dest: /etc/lvm/lvm.conf
+ regexp: '# filter = \[ \"a\/\.\*/\" \]'
+ line: ' filter = [ "a|{{ CINDER_DEVICE }}|", "r/.*/" ]'
+ backrefs: yes