scripts: Add autocluster-test-ctdb script
[autocluster.git] / example.yml
1 ---
2 # 3 CTDB nodes, an active directory node and a test node
3 node_list: [nas, nas, nas, ad, test]
4
5 # Last octet of the first node's IP address - the default is OK but
6 # this will obviously need to be set if running multiple clusters
7 firstip: 50
8
9 repositories:
10   # local CentOS mirror, will cause default repos to be removed
11 - name: centos-7-os
12   type: distro
13   baseurl: http://10.11.12.13/mediasets
14   path: CENTOS/7/os/\$basearch/
15
16   # local Samba and CTDB repository - assumed to be served by host machine
17 - name: samba
18   type: nas
19   path: SAMBA/samba-4.9.4/
20
21   # local Samba AD repository - assumed to be served by host machine
22 - name: samba-ad
23   type: ad
24   path: SAMBA-AD/samba-4.9.4/
25
26   # GPFS cluster filesystme - assumed to be served by host machine
27 - name: gpfs
28   type: clusterfs
29   path: GPFS/4.2.3
30
31 resolv_conf:
32   # nameserver will be the active directory node or, if done, then virthost
33   domain: example.local
34 ...