]> git.openstreetmap.org Git - chef.git/blob - roles/viserion.rb
Upgrade ridley and ouroboros to chef 12
[chef.git] / roles / viserion.rb
1 name "viserion"
2 description "Master role applied to viserion"
3
4 default_attributes(
5   :networking => {
6     :interfaces => {
7       :external_ipv4 => {
8         :interface => "eth0",
9         :role => :external,
10         :family => :inet,
11         :address => "193.198.233.211",
12         :prefix => "27",
13         :gateway => "193.198.233.209"
14       },
15       :external_ipv6 => {
16         :interface => "eth0",
17         :role => :external,
18         :family => :inet6,
19         :address => "2001:b68:4cff:3::3",
20         :prefix => "64",
21         :gateway => "2001:b68:4cff:3::1"
22       }
23     }
24   },
25   :squid => {
26     :cache_mem => "12500 MB",
27     :cache_dir => "coss /store/squid/coss-01 128000 block-size=8192 max-size=262144 membufs=80"
28   },
29   :tilecache => {
30     :tile_parent => "pula.render.openstreetmap.org",
31     :tile_siblings => [
32     ]
33   }
34 )
35
36 run_list(
37   "role[carnet]",
38   "role[tilecache]"
39 )