Detect openstack_release variable in mariadb recovery playbooks

Change-Id: Icb9b097299011cc09f3012bbee9629a5457c920c
Closes-Bug: #1681316
This commit is contained in:
Jeffrey Zhang 2017-04-11 12:08:29 +08:00 committed by Jeffrey Zhang
parent 0e38fc2852
commit f9899fbfc1
1 changed files with 16 additions and 0 deletions

View File

@ -1,4 +1,20 @@
---
- name: Detect openstack_release variable
hosts: mariadb
gather_facts: false
tasks:
- name: Get current kolla-ansible version number
local_action: command python -c "import pbr.version; print(pbr.version.VersionInfo('kolla-ansible'))"
register: kolla_ansible_version
changed_when: false
when: openstack_release == "auto"
- name: Set openstack_release variable
set_fact:
openstack_release: "{{ kolla_ansible_version.stdout }}"
when: openstack_release == "auto"
tags: always
- name: Recover mariadb
hosts: mariadb
roles: