Use tripleo-quickstart overcloud and validate roles

Use the native roles in place of third-party until the role
break up is complete.

Change-Id: If52755eaa77cc87d341121b40b3ec24999077bc3
This commit is contained in:
Ronelle Landy 2016-09-06 16:39:08 -04:00
parent 4d671c9387
commit 96549559ec
1 changed files with 14 additions and 5 deletions

View File

@ -11,10 +11,19 @@
ansible_user: "root"
ansible_host: "{{ virthost }}"
- include: teardown.yml
- include: teardown-provision.yml
# The `provision.yml` playbook is responsible for
# creating an inventory entry for our `virthost` and for creating an
# unprivileged user on that host for use by our virtual environment.
- include: provision.yml
# These teardown tasks only make sense after running provision.yml,
# because they assume they are connecting as the `stack` user rather
# than `root`.
- include: teardown-nodes.yml
- include: teardown-environment.yml
# The `environment/setup` role performs any tasks that require `root`
# access on the target host.
- name: Install libvirt packages and configure networks
@ -74,19 +83,19 @@
hosts: undercloud
gather_facts: no
roles:
- tripleo-overcloud
- tripleo/overcloud
# Add the overcloud nodes to the generated inventory.
- name: Inventory the overcloud
hosts: undercloud
gather_facts: yes
tags:
- overcloud-deploy
vars:
inventory: all
roles:
- tripleo-inventory
# to-do replace this with a role that debugs
# the deployment based on the results
- name: Check the result of the deployment
hosts: localhost
tags:
@ -106,4 +115,4 @@
- overcloud-validate
gather_facts: no
roles:
- tripleo-overcloud-validate
- tripleo/validate