summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPedro Alvarez <pedro.alvarez@codethink.co.uk>2015-04-09 11:05:24 +0000
committerPedro Alvarez <pedro.alvarez@codethink.co.uk>2015-04-10 10:58:36 +0000
commitbfe95fbfca73808861fb021a5c4688a550659bb4 (patch)
tree66554fb618361b4892258a284f1d1e58367709dd
parent56b8eba1916aa8c3f2f5feee156eaf1a61e26a2e (diff)
downloaddefinitions-bfe95fbfca73808861fb021a5c4688a550659bb4.tar.gz
cinder: Configure cinder dependencies when configuring cinder
-rw-r--r--openstack/usr/share/openstack/cinder.yml55
1 files changed, 51 insertions, 4 deletions
diff --git a/openstack/usr/share/openstack/cinder.yml b/openstack/usr/share/openstack/cinder.yml
index 9a1930b4..7752ba85 100644
--- a/openstack/usr/share/openstack/cinder.yml
+++ b/openstack/usr/share/openstack/cinder.yml
@@ -3,6 +3,57 @@
vars_files:
- "/etc/openstack/cinder.conf"
tasks:
+
+# Configure iscsid, this can go in a separate script
+ - name: Update kernel module dependencies
+ command: depmod -a
+
+ - name: generate InitiatorName for iscsi
+ shell: iscsi-iname
+ register: initiator_name
+
+ - lineinfile:
+ dest: /etc/iscsi/initiatorname.iscsi
+ regexp: '^InitiatorName=$'
+ line: 'InitiatorName={{ initiator_name.stdout }}'
+ backrefs: yes
+
+ - name: Enable and start iscsid
+ service:
+ name: "{{ item }}"
+ enabled: yes
+ state: started
+ with_items:
+ - iscsid
+
+# Configure LVM and target for Cinder
+ - 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
+
+ - name: Enable and start lvm2-lvmetad and target services
+ service:
+ name: "{{ item }}"
+ enabled: yes
+ state: started
+ with_items:
+ - lvm2-lvmetad
+ - target
+
+# Configure cinder
- name: Create the cinder user.
user:
name: cinder
@@ -100,7 +151,3 @@
- openstack-cinder-scheduler
- openstack-cinder-volume
- openstack-cinder-backup
-
- - lvg:
- vg: cinder-volumes
- pvs: "{{ CINDER_DEVICE }}"