]> git.openstreetmap.org Git - chef.git/blob - roles/necrosan.rb
Enable netplan for French tile caches
[chef.git] / roles / necrosan.rb
1 name "necrosan"
2 description "Master role applied to necrosan"
3
4 default_attributes(
5   :networking => {
6     :netplan => true,
7     :interfaces => {
8       :external_ipv4 => {
9         :interface => "ens18",
10         :role => :external,
11         :family => :inet,
12         :address => "80.67.167.77",
13         :prefix => "32",
14         :gateway => "10.0.6.1"
15       },
16       :external_ipv6 => {
17         :interface => "ens18",
18         :role => :external,
19         :family => :inet6,
20         :address => "2a0b:cbc0:110d:1::1c",
21         :prefix => "64",
22         :gateway => "2a0b:cbc0:110d:1::1"
23       }
24     }
25   },
26   :squid => {
27     :cache_mem => "7500 MB",
28     :cache_dir => "coss /store/squid/coss-01 128000 block-size=8192 max-size=262144 membufs=80"
29   },
30   :tilecache => {
31     :tile_parent => "france.render.openstreetmap.org",
32     :tile_siblings => [
33       "noomoahk.openstreetmap.org",
34       "nepomuk.openstreetmap.org",
35       "norbert.openstreetmap.org",
36       "ladon.openstreetmap.org",
37       "culebre.openstreetmap.org"
38     ]
39   }
40 )
41
42 run_list(
43   "role[milkywan]",
44   "role[tilecache]"
45 )