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