]> git.openstreetmap.org Git - chef.git/blob - roles/norbert.rb
Enable netplan for French tile caches
[chef.git] / roles / norbert.rb
1 name "norbert"
2 description "Master role applied to norbert"
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 => "89.234.186.100",
13         :prefix => "27",
14         :gateway => "89.234.186.97"
15       },
16       :external_ipv6 => {
17         :interface => "ens18",
18         :role => :external,
19         :family => :inet6,
20         :address => "2a00:5884:821c::1",
21         :prefix => "48",
22         :gateway => "fe80::204:92:100:1"
23       }
24     }
25   },
26   :squid => {
27     :cache_mem => "7500 MB",
28     :cache_dir => "coss /store/squid/coss-01 80000 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       "necrosan.openstreetmap.org",
36       "ladon.openstreetmap.org",
37       "culebre.openstreetmap.org"
38     ]
39   }
40 )
41
42 run_list(
43   "role[grifon]",
44   "role[tilecache]"
45 )