]> git.openstreetmap.org Git - chef.git/blob - roles/shenron.rb
Merge interface families
[chef.git] / roles / shenron.rb
1 name "shenron"
2 description "Master role applied to shenron"
3
4 default_attributes(
5   :apache => {
6     :mpm => "event",
7     :event => {
8       :min_spare_threads => 50,
9       :max_spare_threads => 150
10     }
11   },
12   :hardware => {
13     :hwmon => {
14       "platform_it87_552" => {
15         :ignore => %w[in6]
16       }
17     },
18     :modules => [
19       "it87"
20     ]
21   }
22 )
23
24 override_attributes(
25   :networking => {
26     :dnssec => "false",
27     :interfaces => {
28       :external => {
29         :interface => "eth0",
30         :role => :external,
31         :inet => {
32           :address => "212.110.172.32",
33           :prefix => "26",
34           :gateway => "212.110.172.1"
35         },
36         :inet6 => {
37           :address => "2001:41c9:1:400::32",
38           :prefix => "64",
39           :gateway => "fe80::1"
40         }
41       }
42     }
43   }
44 )
45
46 run_list(
47   "role[bytemark]",
48   "role[lists]",
49   "role[osqa]"
50 )