diff options
author | Jenkins <jenkins@review.openstack.org> | 2017-02-28 15:23:14 +0000 |
---|---|---|
committer | Gerrit Code Review <review@openstack.org> | 2017-02-28 15:23:14 +0000 |
commit | 73a3eb9be5259a43364770b39b57d87520b455fe (patch) | |
tree | 01889d6722015363789e28c80fb68331810e2353 /puppet | |
parent | 8728c06bf42b6ec00821a96b3086e7854227755d (diff) | |
parent | 2cebb99729005a31fbe24a957d2db84397f1952a (diff) |
Merge "Add zaqar service for composable upgrade"
Diffstat (limited to 'puppet')
-rw-r--r-- | puppet/services/zaqar.yaml | 15 |
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 |