aboutsummaryrefslogtreecommitdiffstats
path: root/puppet/services
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2017-02-28 15:23:14 +0000
committerGerrit Code Review <review@openstack.org>2017-02-28 15:23:14 +0000
commit73a3eb9be5259a43364770b39b57d87520b455fe (patch)
tree01889d6722015363789e28c80fb68331810e2353 /puppet/services
parent8728c06bf42b6ec00821a96b3086e7854227755d (diff)
parent2cebb99729005a31fbe24a957d2db84397f1952a (diff)
Merge "Add zaqar service for composable upgrade"
Diffstat (limited to 'puppet/services')
-rw-r--r--puppet/services/zaqar.yaml15
1 files changed, 15 insertions, 0 deletions
diff --git a/puppet/services/zaqar.yaml b/puppet/services/zaqar.yaml
index cb860fa8..bc3a51c2 100644
--- a/puppet/services/zaqar.yaml
+++ b/puppet/services/zaqar.yaml
@@ -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