]> git.openstreetmap.org Git - chef.git/blob - roles/balerion.rb
Add role for balerion
[chef.git] / roles / balerion.rb
1 name "balerion"
2 description "Master role applied to balerion"
3
4 default_attributes(
5   :networking => {
6     :interfaces => {
7       :external_ipv4 => {
8         :interface => "bond0",
9         :role => :external,
10         :family => :inet,
11         :address => "138.44.68.134",
12         :prefix => "30",
13         :gateway => "138.44.68.133",
14         :bond => {
15           :slaves => %w[ens14f0 ens14f1]
16         }
17       }
18     }
19   },
20   :squid => {
21     :cache_mem => "32000 MB",
22     :cache_dir => "coss /store/squid/coss-01 80000 block-size=8192 max-size=262144 membufs=80"
23   },
24   :tilecache => {
25     :tile_parent => "melbourne.render.openstreetmap.org",
26     :tile_siblings => [
27       "waima.openstreetmap.org",
28       "tuatara.openstreetmap.org",
29       "longma.openstreetmap.org"
30     ]
31   }
32 )
33
34 run_list(
35   "role[aarnet]",
36   "role[tilecache]"
37 )