Add zaqar service for composable upgrade

Change-Id: I316e14317e0586e895dcb4e084aa54e7665f6a20
This commit is contained in:
Carlos Camacho 2017-02-20 10:45:13 +01:00
parent d5b0c38f0b
commit 2cebb99729
1 changed files with 15 additions and 0 deletions

View 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