]> git.openstreetmap.org Git - chef.git/blob - roles/chrysophylax.rb
Disable HTTP2 for svn.openstreetmap.org
[chef.git] / roles / chrysophylax.rb
1 name "chrysophylax"
2 description "Master role applied to chrysophylax"
3
4 default_attributes(
5   :networking => {
6     :interfaces => {
7       :external_ipv4 => {
8         :interface => "ens160",
9         :role => :external,
10         :family => :inet,
11         :address => "217.71.244.22",
12         :prefix => "30",
13         :gateway => "217.71.244.21"
14       },
15       :external_ipv6 => {
16         :interface => "ens160",
17         :role => :external,
18         :family => :inet6,
19         :address => "2001:8e0:40:2039::10",
20         :prefix => "64",
21         :gateway => "2001:8e0:40:2039::1"
22       }
23     }
24   },
25   :squid => {
26     :cache_mem => "7500 MB",
27     :cache_dir => "coss /store/squid/coss-01 128000 block-size=8192 max-size=262144 membufs=80"
28   },
29   :tilecache => {
30     :tile_parent => "zurich.render.openstreetmap.org",
31     :tile_siblings => [
32       "noomoahk.openstreetmap.org",
33       "ladon.openstreetmap.org",
34       "culebre.openstreetmap.org"
35     ]
36   }
37 )
38
39 run_list(
40   "role[iway]",
41   "role[geodns]",
42   "role[tilecache]"
43 )