Merge "Adding mistral collection"

This commit is contained in:
Zuul 2018-09-14 16:28:47 +00:00 committed by Gerrit Code Review
commit 1c5ea1b1f5
3 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,22 @@
---
#
# Tasks to get mistral facts
#
- name: Check that mistral is installed
become: true
stat: path=/etc/mistral/mistral.conf
register: mistral_config
- name: Parse Mistral config
become: true
command: python /tmp/openstack-config-parser.py mistral /tmp/out.yml
when: mistral_config.stat.exists
- name: Fetch output
fetch: src=/tmp/out.yml dest=/tmp/out-{{ inventory_hostname }}.yml flat=yes
when: mistral_config.stat.exists
- name: Load configuration variables
include_vars: /tmp/out-{{ inventory_hostname }}.yml
when: mistral_config.stat.exists

View File

@ -28,6 +28,7 @@
roles:
- common
- undercloud
- mistral
- hosts: browbeat
remote_user: "{{ browbeat_user }}"

View File

@ -28,6 +28,7 @@
roles:
- browbeat-metadata/common
- browbeat-metadata/undercloud
- browbeat-metadata/mistral
- name: Dump metadata to files
hosts: undercloud