]> git.openstreetmap.org Git - chef.git/blob - roles/odin.rb
Enable network bonding on odin
[chef.git] / roles / odin.rb
1 name "odin"
2 description "Master role applied to odin"
3
4 default_attributes(
5   :networking => {
6     :interfaces => {
7       :external_ipv4 => {
8         :interface => "bond0",
9         :role => :external,
10         :family => :inet,
11         :address => "130.225.254.123",
12         :prefix => "23",
13         :gateway => "130.225.254.97",
14         :bond => {
15           :slaves => %w[eno1 eno2]
16         }
17       },
18       :external_ipv6 => {
19         :interface => "bond0",
20         :role => :external,
21         :family => :inet6,
22         :address => "2001:878:346::123",
23         :prefix => "64",
24         :gateway => "2001:878:346::97"
25       }
26     }
27   },
28   :squid => {
29     :cache_mem => "14000 MB",
30     :cache_dir => "coss /store/squid/coss-01 128000 block-size=8192 max-size=262144 membufs=80"
31   },
32   :tilecache => {
33     :tile_parent => "aalborg.render.openstreetmap.org",
34     :tile_siblings => [
35       "trogdor.openstreetmap.org",
36       "katie.openstreetmap.org",
37       "konqi.openstreetmap.org",
38       "ridgeback.openstreetmap.org",
39       "gorynych.openstreetmap.org"
40     ]
41   }
42 )
43
44 run_list(
45   "role[dotsrc]",
46   "role[tilecache]"
47 )