]> git.openstreetmap.org Git - chef.git/blob - roles/tabaluga.rb
Merge interface families
[chef.git] / roles / tabaluga.rb
1 name "tabaluga"
2 description "Master role applied to tabaluga"
3
4 default_attributes(
5   :dhcpd => {
6     :first_address => "10.0.62.1",
7     :last_address => "10.0.62.254"
8   },
9   :networking => {
10     :interfaces => {
11       :internal => {
12         :interface => "bond0",
13         :role => :internal,
14         :inet => {
15           :address => "10.0.48.14"
16         },
17         :bond => {
18           :mode => "802.3ad",
19           :lacprate => "fast",
20           :xmithashpolicy => "layer3+4",
21           :slaves => %w[eno1 eno2]
22         }
23       },
24       :external => {
25         :interface => "bond0.2",
26         :role => :external,
27         :inet => {
28           :address => "130.117.76.14"
29         },
30         :inet6 => {
31           :address => "2001:978:2:2c::172:e"
32         }
33       }
34     }
35   }
36 )
37
38 run_list(
39   "role[equinix-ams]",
40   "role[hp-g9]",
41   "recipe[dhcpd]"
42 )