Create single playbook for ovb deploy

Ovb jobs are showing sporadic timeouts:-
~~~
TASK [tripleo-inventory : Ensure gather_facts has been run against localhost]
~~~

With this patch we are creating a single playbook ovb.yml
which includes other playbook used to deploy ovb, it results in single 
ansible playbook run instead of multiple to avoid the issue of timeout.

Related-Bug: #1883843
Change-Id: Id3a4469fe251ccac4763d977b962f48777a554c2
This commit is contained in:
Sandeep Yadav 2020-10-15 22:25:15 +05:30
parent 07ee21f9bc
commit 2c5d8abd97

6
playbooks/ovb.yml Normal file
View File

@ -0,0 +1,6 @@
---
- import_playbook: ovb-setup.yml
- import_playbook: baremetal-full-undercloud.yml
- import_playbook: baremetal-full-overcloud-prep.yml
- import_playbook: baremetal-full-overcloud.yml
- import_playbook: baremetal-full-overcloud-validate.yml