tripleo-quickstart-extras/playbooks/multinode-standalone-ipa.yml
Ronelle Landy b4e0a03c14 Add role for standalone on multinode with IPA
This review adds the ipa-multinode role to
install and configure a two-node setup -
where the IPA server is running on the
secondary node and a standalone deployment
is run on the primary node.

This review also includes modifications to
standalone role to use the IPA server when
enable_tls is set to true.

Depends-On: https://review.opendev.org/#/c/707419
Depends-On: https://review.opendev.org/#/c/724907
Story: https://tree.taiga.io/project/tripleo-ci-board/us/670
Change-Id: Ibe23ad6465a06e92e295cb419888684e699e945f
2020-05-08 12:03:17 -04:00

29 lines
565 B
YAML

---
- name: Add the nodes to the generated inventory
hosts: undercloud
gather_facts: true
vars:
inventory: multinode
roles:
- tripleo-inventory
tags:
- standalone
- name: Setup the IPA server
hosts: subnode-1
tags:
- standalone
tasks:
- include_role:
name: ipa-multinode
tasks_from: ipaserver-subnode-install.yml
- name: Setup the undercloud for IPA server
hosts: undercloud
tags:
- standalone
tasks:
- include_role:
name: ipa-multinode
tasks_from: ipaserver-undercloud-setup.yml