-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsplit_external_cms.yaml
47 lines (44 loc) · 1.11 KB
/
split_external_cms.yaml
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
42
43
44
45
46
47
---
# Use lowercase for all nodes, roles, and components keys and values.
# Use 'g' for GB (the default) and 'm' for MB for ram values.
nodes:
split-master.example.com:
resources:
cpu: 16
ram: 32
split-console.example.com:
resources:
cpu: 8
ram: 16
split-db.example.com:
resources:
cpu: 8
ram: 16
external-database.example.com:
resources:
cpu: 8
ram: 16
compile-master1.example.com:
resources:
cpu: 4
ram: 8
compile-master2.example.com:
resources:
cpu: 4
ram: 8
# Infrastructure roles include:
#
# puppet_master_host (string)
# primary_master_replica (string)
# console_host (string)
# puppetdb_host (string or an array)
# database_host (string or an array)
# compile_master (string or an array)
roles:
puppet_master_host: split-master.example.com
console_host: split-console.example.com
puppetdb_host: split-db.example.com
database_host: external-database.example.com
compile_master:
- compile-master1.example.com
- compile-master2.example.com