
While splitting the baremetal job we forgot to include the fetch-images part with the result of failing deploys. This commit fix the issue re introducing the role at the end of the baremetal undercloud preparation. Change-Id: Ic03473f5bb7d44d0a92257ce6d035a805322a8c2
40 lines
716 B
YAML
40 lines
716 B
YAML
---
|
|
- name: Baremetal undercloud install
|
|
hosts: localhost
|
|
roles:
|
|
- baremetal-undercloud
|
|
tags:
|
|
- baremetal-undercloud
|
|
|
|
- name: Add the undercloud node to the generated inventory
|
|
hosts: localhost
|
|
gather_facts: yes
|
|
roles:
|
|
- tripleo-inventory
|
|
tags:
|
|
- undercloud-inventory
|
|
|
|
- name: Setup repositories
|
|
hosts: undercloud
|
|
gather_facts: yes
|
|
roles:
|
|
- repo-setup
|
|
tags:
|
|
- undercloud-repo-setup
|
|
|
|
- name: Install packages
|
|
hosts: undercloud
|
|
gather_facts: no
|
|
roles:
|
|
- baremetal-undercloud/packages
|
|
tags:
|
|
- undercloud-pkgs-install
|
|
|
|
- name: Fetch the overcloud images
|
|
hosts: undercloud
|
|
gather_facts: no
|
|
roles:
|
|
- fetch-images
|
|
tags:
|
|
- overcloud-fetch-images
|