-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmulti-deployment.yml
41 lines (41 loc) · 1.17 KB
/
multi-deployment.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# This example creates two IPA deployments, with one server each.
#
# Note that the hostnames are the same on each deployment, but the domain
# is different, and the name of the servers is also different.
#
# The network is still the same network with mask 255.255.255.0, randomly
# defined as 192.168.X.0/24 (where x is 1-254), and the IP numbers for the
# hosts are in the range 192.168.X.10 to 192.168.X.254 (in this example, X=7).
---
lab_name: multi-deployment
container_fqdn: true # required with multiple IPA deployments
subnet: "192.168.7.0/24"
ipa_deployments:
- name: origin
domain: origin.ipa.test
admin_password: SomeADMINpassword
dm_password: SomeDMpassword
cluster:
servers:
- name: server
capabilities:
- DNS
- name: replica
capabilities:
- CA
clients:
- name: cli-01
- name: target
domain: target.ipa.test
admin_password: SomeOtherADMINpassword
dm_password: SomeOtherDMpassword
cluster:
servers:
- name: server
capabilities:
- DNS
- name: replica
capabilities:
- CA
clients:
- name: cli-01