1422411e67
Keystone roles where added previously but where never added to the list of roles to execute in the playbook. This corrects that oversite. Change-Id: I8dde374ad62563bc419b039cf6478be6fe6590d0
34 lines
623 B
YAML
34 lines
623 B
YAML
---
|
|
- hosts: compute
|
|
remote_user: "{{ host_remote_user }}"
|
|
become: true
|
|
roles:
|
|
- compute
|
|
|
|
- hosts: controller
|
|
remote_user: "{{ host_remote_user }}"
|
|
become: true
|
|
roles:
|
|
- nova
|
|
- neutron
|
|
- keystone
|
|
- mysql
|
|
- rabbitmq
|
|
|
|
- hosts: undercloud
|
|
remote_user: "{{ local_remote_user }}"
|
|
become: true
|
|
roles:
|
|
- undercloud
|
|
|
|
|
|
- hosts: localhost
|
|
become: true
|
|
tasks:
|
|
- name: Dump all vars
|
|
local_action: template src=dump_facts.j2 dest={{ browbeat_path }}/machine_facts.json
|
|
- name: Generate metadata jsons
|
|
shell : python {{ browbeat_path }}/lib/Metadata.py {{ browbeat_path }}
|
|
|
|
|