]> git.openstreetmap.org Git - chef.git/blob - roles/ascalon.rb
Enable netplan for American tile caches
[chef.git] / roles / ascalon.rb
1 name "ascalon"
2 description "Master role applied to ascalon"
3
4 default_attributes(
5   :networking => {
6     :netplan => true,
7     :interfaces => {
8       :external_ipv4 => {
9         :interface => "eno1",
10         :role => :external,
11         :family => :inet,
12         :address => "184.107.48.228",
13         :prefix => "27",
14         :gateway => "184.107.48.225"
15       }
16     }
17   },
18   :squid => {
19     :cache_mem => "16000 MB",
20     :cache_dir => "coss /store/squid/coss-01 128000 block-size=8192 max-size=262144 membufs=80"
21   },
22   :tilecache => {
23     :tile_parent => "montreal.render.openstreetmap.org",
24     :tile_siblings => [
25       "stormfly-02.openstreetmap.org",
26       "jakelong.openstreetmap.org"
27     ]
28   }
29 )
30
31 run_list(
32   "role[netalerts]",
33   "role[geodns]",
34   "role[tilecache]"
35 )