]> git.openstreetmap.org Git - chef.git/blob - roles/lurien.rb
Standardise on "hash rocket" style for hashes
[chef.git] / roles / lurien.rb
1 name "lurien"
2 description "Master role applied to lurien"
3
4 default_attributes(
5   :networking => {
6     :interfaces => {
7       :internal_ipv4 => {
8         :interface => "eth0",
9         :role => :internal,
10         :family => :inet,
11         :address => "10.64.1.22",
12         :prefix => "24",
13         :mtu => "9000"
14       },
15       :external_ipv4 => {
16         :interface => "eth1",
17         :role => :external,
18         :family => :inet,
19         :address => "193.55.222.229",
20         :prefix => "24",
21         :gateway => "193.55.222.1"
22       }
23     }
24   },
25   :squid => {
26     :cache_mem => "9000 MB",
27     :cache_dir => "coss /store/squid/coss-01 128000 block-size=8192 max-size=262144 membufs=80"
28   },
29   :tilecache => {
30     :tile_parent => "pau.render.openstreetmap.org",
31     :tile_siblings => [
32       "nepomuk.openstreetmap.org",
33       "katie.openstreetmap.org",
34       "konqi.openstreetmap.org",
35       "ridgeback.openstreetmap.org",
36       "fume.openstreetmap.org",
37       "gorynych.openstreetmap.org"
38     ]
39   }
40 )
41
42 run_list(
43   "role[paulla]",
44   "role[tilecache]"
45 )