deploy-steps.j2: use ansible to bootstrap environment

We introduced a new Ansible role, tripleo-bootstrap:
I560273be2ebe3a49ff37e3682222706939e5d879

This role will take care of preparing an environment that will deploy
TripleO later.
This patch aims to use execute this new role on all hosts.
We don't gather_facts, (already gathered previously), we want to fail on
any error and also the role will be executed on pre_deploy_steps tag.

Change-Id: If9306473701a340d577bbe0a4a7dfee90be99c2f
Depends-On: I560273be2ebe3a49ff37e3682222706939e5d879
This commit is contained in:
Emilien Macchi 2017-12-04 11:49:05 -08:00
parent adeb5df53c
commit c45a8a462a
1 changed files with 8 additions and 0 deletions

View File

@ -395,6 +395,14 @@ outputs:
gather_facts: yes
tags:
- facts
- hosts: overcloud
name: Bootstrap TripleO servers
gather_facts: no
any_errors_fatal: yes
roles:
- tripleo-bootstrap
tags:
- bootstrap
- hosts: overcloud
name: Server deployments
gather_facts: no