]> git.openstreetmap.org Git - chef.git/blob - roles/simurgh.rb
Make maswan an admin on umu machines
[chef.git] / roles / simurgh.rb
1 name "simurgh"
2 description "Master role applied to simurgh"
3
4 default_attributes(
5   :networking => {
6     :interfaces => {
7       :external_ipv4 => {
8         :interface => "ens32",
9         :role => :external,
10         :family => :inet,
11         :address => "94.20.20.55",
12         :prefix => "24",
13         :gateway => "94.20.20.1"
14       }
15     }
16   },
17   :squid => {
18     :cache_mem => "6400 MB",
19     :cache_dir => "coss /store/squid/coss-01 128000 block-size=8192 max-size=262144 membufs=80"
20   },
21   :tilecache => {
22     :tile_parent => "baku.render.openstreetmap.org",
23     :tile_siblings => [
24       "katie.openstreetmap.org",
25       "konqi.openstreetmap.org",
26       "nepomuk.openstreetmap.org",
27       "ridgeback.openstreetmap.org"
28     ]
29   }
30 )
31
32 run_list(
33   "role[delta]",
34   "role[tilecache]"
35 )