Merge "Fixes inserting ceph OSD into compute role"
authorFeng Pan <fpan@redhat.com>
Fri, 1 Dec 2017 00:24:14 +0000 (00:24 +0000)
committerGerrit Code Review <gerrit@opnfv.org>
Fri, 1 Dec 2017 00:24:14 +0000 (00:24 +0000)
lib/ansible/playbooks/deploy_overcloud.yml

index 4d55c8f..b2d9234 100644 (file)
         state: restarted
         enabled: yes
       become: yes
+    - name: Remove Ceph OSD from ceph storage role
+      lineinfile:
+        path: /usr/share/openstack-tripleo-heat-templates/roles_data.yaml
+        line: '    - OS::TripleO::Services::CephOSD'
+        owner: root
+        group: root
+        state: absent
+      become: yes
     - name: Insert Ceph OSDs into Compute role
       lineinfile:
         path: /usr/share/openstack-tripleo-heat-templates/roles_data.yaml
-        insertbefore: 'OS::TripleO::Services::NovaCompute'
+        insertbefore:  '^\s*-\sOS::TripleO::Services::NovaCompute$'
         line: '    - OS::TripleO::Services::CephOSD'
         owner: root
         group: root