
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
39 lines
859 B
YAML
39 lines
859 B
YAML
---
|
|
# Deploy the FreeIPA server
|
|
- name: Deploy the FreeIPA server
|
|
hosts: supplemental
|
|
gather_facts: false
|
|
tags:
|
|
- freeipa-setup
|
|
roles:
|
|
- {role: freeipa-setup, when: deploy_supplemental_node|bool and enable_tls_everywhere|bool}
|
|
|
|
# setup for the undercloud
|
|
- name: Setup the undercloud
|
|
hosts: undercloud
|
|
gather_facts: false
|
|
vars:
|
|
ansible_user: root
|
|
tags:
|
|
- undercloud-setup
|
|
roles:
|
|
- {role: undercloud-setup, when: undercloud_setup|bool}
|
|
|
|
# Deploy the undercloud
|
|
- name: Deploy the undercloud
|
|
hosts: undercloud
|
|
gather_facts: false
|
|
tags:
|
|
- undercloud-deploy
|
|
roles:
|
|
- undercloud-deploy
|
|
|
|
- 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}
|