
This patch adds a task to download the Octavia Amphora image to the working directory on the undercloud so that it can be pulled in by the Octavia overcloud deployment tasks. Change-Id: Ie387f1274059ec80d19c5ef0bf9aed7a3a999e2a
50 lines
1.1 KiB
YAML
50 lines
1.1 KiB
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: Configure tripleo-validations
|
|
hosts: undercloud
|
|
gather_facts: false
|
|
tags:
|
|
- tripleo-validations
|
|
vars:
|
|
run_tripleo_validations_setup: true
|
|
roles:
|
|
- {role: tripleo-validations,
|
|
when: run_tripleo_validations|bool or run_tripleo_validations_negative_tests|bool}
|
|
|
|
- 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}
|