Merge "Add upgrade task to run gnocchi upgrade"

This commit is contained in:
Zuul 2017-11-21 21:16:28 +00:00 committed by Gerrit Code Review
commit 6c29a106cb
1 changed files with 11 additions and 0 deletions

View File

@ -157,3 +157,14 @@ outputs:
- name: Stop gnocchi_api service (running under httpd)
tags: step1
service: name=httpd state=stopped
- name: get bootstrap nodeid
tags: common
command: hiera bootstrap_nodeid
register: bootstrap_node
- name: set is_bootstrap_node fact
tags: common
set_fact: is_bootstrap_node={{bootstrap_node.stdout|lower == ansible_hostname|lower}}
- name: Setup gnocchi db during upgrade
tags: step5
command: gnocchi-upgrade
when: is_bootstrap_node