Remove bash autocluster script and supporting files
[tridge/autocluster.git] / defaults.yml
1 #
2 # Environment
3 #
4
5 # As seen by nodes
6 virthost: 10.0.0.1
7 timezone: Australia/Canberra
8
9 #
10 # Repositories
11 #
12
13 repositories_delete_existing: false
14 repository_baseurl: http://10.0.0.1/mediasets
15 repositories: []
16
17 #
18 # Cluster
19 #
20
21 vagrant_box: generic/centos7
22 vagrant_provider: libvirt
23
24 # Supported types: nas, ad, base, build, cbuild, storage, test
25 node_list: [nas, nas, nas, nas, base]
26
27 cpus: 2
28 # mem is currently ignored due to a libvirt provider bug
29 mem: 1024
30
31 # Block devices shared between nodes, used for cluster filesystem
32 shared_disks:
33   count: 3
34   size: 10G
35
36 # Currently unused
37 #disksize: 20G
38 #rootsize: 15000
39 #swapsize: 2000
40
41 #
42 # Cluster filesystem
43 #
44 clusterfs:
45   type: gpfs
46   mountpoint: /clusterfs
47
48 # Networking
49
50 resolv_conf:
51   domain: example.com
52   search: example.com
53   # Defaults to 1st AD node if one exists
54   nameserver: 10.0.0.1
55
56 samba:
57   workgroup: EXAMPLE
58
59 networks:
60 - 10.0.0.0/24
61 - 10.0.1.0/24
62 - 10.0.2.0/24
63 # Final octet for 1st IP of cluster
64 firstip: 20
65 # Offset from firstip of public IP addresses
66 public_ip_offset: 100
67
68 #
69 # Authentication
70 #
71
72 # Default automatically switches to winbind if an AD node exists
73 auth_method: files
74 # Defaults to 1st AD node, if one exists
75 kdc: example-ad
76
77 #
78 # Active directory
79 #
80
81 ad:
82   admin_password: p@ssw0rd
83   # Defaults to virthost
84   dns_forwarder: 10.0.0.1
85
86 #
87 # Includes
88 #
89
90 # Useful for combining configurations, particularly static +
91 # generated.  Note that position in current file does not matter: any
92 # included configuration overrides configuration from the current
93 # file.  This means that include: should logically be at the end.  Can
94 # be either a single filename or a list of filenames.
95
96 # include: foo.yml
97
98 # include:
99 # - a.yml
100 # - b.yml
101
102 ...