Add zaqar service for composable upgrade
authorCarlos Camacho <ccamacho@redhat.com>
Mon, 20 Feb 2017 09:45:13 +0000 (10:45 +0100)
committerCarlos Camacho <ccamacho@redhat.com>
Tue, 28 Feb 2017 16:25:36 +0000 (16:25 +0000)
Change-Id: I316e14317e0586e895dcb4e084aa54e7665f6a20
(cherry picked from commit 2cebb99729005a31fbe24a957d2db84397f1952a)

puppet/services/zaqar.yaml

index cb860fa..bc3a51c 100644 (file)
@@ -64,3 +64,18 @@ outputs:
 
       step_config: |
         include ::tripleo::profile::base::zaqar
+      upgrade_tasks:
+        - name: Check if zaqar is deployed
+          command: systemctl is-enabled openstack-zaqar
+          tags: step0,validation
+          ignore_errors: True
+          register: zaqar_enabled
+        - name: "PreUpgrade step0,validation: Check if openstack-zaqar is running"
+          shell: >
+            /usr/bin/systemctl show 'openstack-zaqar' --property ActiveState |
+            grep '\bactive\b'
+          when: zaqar_enabled.rc == 0
+          tags: step0,validation
+        - name: Stop zaqar service
+          tags: step1
+          service: name=openstack-zaqar state=stopped