]> git.openstreetmap.org Git - chef.git/blob - roles/noomoahk.rb
Merge remote-tracking branch 'github/pull/249'
[chef.git] / roles / noomoahk.rb
1 name "noomoahk"
2 description "Master role applied to noomoahk"
3
4 default_attributes(
5   :networking => {
6     :interfaces => {
7       :external_ipv4 => {
8         :interface => "ens3",
9         :role => :external,
10         :family => :inet,
11         :address => "91.224.148.166",
12         :prefix => "32",
13         :gateway => "89.234.156.230"
14       },
15       :external_ipv6 => {
16         :interface => "ens3",
17         :role => :external,
18         :family => :inet6,
19         :address => "2a03:7220:8080:a600::1",
20         :prefix => "56",
21         :gateway => "fe80::1"
22       }
23     }
24   },
25   :squid => {
26     :cache_mem => "3100 MB",
27     :cache_dir => "coss /store/squid/coss-01 80000 block-size=8192 max-size=262144 membufs=80"
28   },
29   :tilecache => {
30     :tile_parent => "france.render.openstreetmap.org",
31     :tile_siblings => [
32       # "necrosan.openstreetmap.org", # IO Overloaded
33       "nepomuk.openstreetmap.org",
34       # "noomoahk.openstreetmap.org",
35       "norbert.openstreetmap.org",
36       "ladon.openstreetmap.org",
37       "culebre.openstreetmap.org",
38       "gorynych.openstreetmap.org"
39     ]
40   }
41 )
42
43 run_list(
44   "role[tetaneutral]",
45   "role[tilecache]"
46 )