Merge "Adding mistral collection"
This commit is contained in:
commit
1c5ea1b1f5
22
ansible/gather/roles/mistral/tasks/main.yml
Normal file
22
ansible/gather/roles/mistral/tasks/main.yml
Normal 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
|
@ -28,6 +28,7 @@
|
||||
roles:
|
||||
- common
|
||||
- undercloud
|
||||
- mistral
|
||||
|
||||
- hosts: browbeat
|
||||
remote_user: "{{ browbeat_user }}"
|
||||
|
@ -28,6 +28,7 @@
|
||||
roles:
|
||||
- browbeat-metadata/common
|
||||
- browbeat-metadata/undercloud
|
||||
- browbeat-metadata/mistral
|
||||
|
||||
- name: Dump metadata to files
|
||||
hosts: undercloud
|
||||
|
Loading…
x
Reference in New Issue
Block a user