7a5ed70cf8
This patch remove useless tripleo-validations calls in the tripleo-quickstart-extras playbook. Only validations and standalone is used for now in CI. The other implementations was legacy implementation that is not used anymore in CI Change-Id: I2ef1f06007c646ef4307c0cc0b6f60af414f9234
35 lines
741 B
YAML
35 lines
741 B
YAML
---
|
|
- name: Deploy the undercloud
|
|
hosts: undercloud
|
|
gather_facts: true
|
|
roles:
|
|
- undercloud-deploy
|
|
tags:
|
|
- undercloud-deploy
|
|
|
|
- name: Validate the undercloud
|
|
hosts: undercloud
|
|
roles:
|
|
- {role: validate-undercloud,
|
|
when: run_validate_undercloud|default(false)|bool}
|
|
tags:
|
|
- validate-undercloud
|
|
|
|
- name: Download amphora image for octavia
|
|
hosts: undercloud
|
|
gather_facts: false
|
|
tags:
|
|
- octavia
|
|
roles:
|
|
- {role: octavia-amphora-download,
|
|
when: download_amphora is defined and download_amphora|bool}
|
|
|
|
- name: Build images for quickstart
|
|
hosts: undercloud
|
|
gather_facts: false
|
|
roles:
|
|
- {role: build-images, when: to_build|default(false)|bool}
|
|
tags:
|
|
- get-images
|
|
- images
|