Add example client and cluster playbooks and also cluster inventory file

This commit is contained in:
Thomas Woerner
2018-04-04 16:23:26 +02:00
parent 53d984f1e8
commit a4b2401e4f
5 changed files with 99 additions and 0 deletions

24
install-cluster.yml Normal file
View File

@@ -0,0 +1,24 @@
---
- name: Install IPA servers
hosts: ipaserver
become: true
roles:
- role: ipaserver
state: present
- name: Install IPA replicas
hosts: ipareplicas
become: true
roles:
- role: ipareplica
state: present
- name: Install IPA clients
hosts: ipaclients
become: true
roles:
- role: ipaclient
state: present