bdada2eca5
For environments where OVB is run on an Openstack host cloud, this role contains the functionality to manage the heat stack. The associated playbooks are included. Change-Id: I6270000613b1883a4f729faee3d255fd08624c13
19 lines
425 B
YAML
19 lines
425 B
YAML
---
|
|
- name: Create the OVB stack
|
|
hosts: localhost
|
|
roles:
|
|
- { role: ovb-manage-stack, ovb_manage_stack_mode: 'create' }
|
|
|
|
- name: Inventory the undercloud instance
|
|
hosts: localhost
|
|
gather_facts: yes
|
|
roles:
|
|
- { role: tripleo-inventory }
|
|
|
|
- name: Setup the undercloud
|
|
hosts: undercloud
|
|
vars:
|
|
ansible_ssh_user: root
|
|
roles:
|
|
- { role: ovb-manage-stack, ovb_manage_stack_mode: 'setup-undercloud' }
|