]> git.openstreetmap.org Git - chef.git/blob - roles/toothless.rb
Update carto stylesheet to v4.22.0
[chef.git] / roles / toothless.rb
1 name "toothless"
2 description "Master role applied to toothless"
3
4 default_attributes(
5   :networking => {
6     :interfaces => {
7       :external_ipv4 => {
8         :interface => "eth0",
9         :role => :external,
10         :family => :inet,
11         :address => "185.73.44.167",
12         :prefix => "22",
13         :gateway => "185.73.44.1"
14       },
15       :external_ipv6 => {
16         :interface => "eth0",
17         :role => :external,
18         :family => :inet6,
19         :address => "2001:ba8:0:2ca7::",
20         :prefix => "64",
21         :gateway => "fe80::fcff:ffff:feff:ffff"
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 => "london.render.openstreetmap.org",
31     :tile_siblings => [
32       "saphira.openstreetmap.org",
33       "trogdor.openstreetmap.org",
34       "katie.openstreetmap.org",
35       "konqi.openstreetmap.org",
36       "ridgeback.openstreetmap.org",
37       "gorynych.openstreetmap.org"
38     ]
39   }
40 )
41
42 run_list(
43   "role[jump]",
44   "role[geodns]",
45   "role[tilecache]"
46 )