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