]> git.openstreetmap.org Git - chef.git/blob - roles/norbert.rb
Merge interface families
[chef.git] / roles / norbert.rb
1 name "norbert"
2 description "Master role applied to norbert"
3
4 default_attributes(
5   :networking => {
6     :interfaces => {
7       :internal => {
8         :interface => "bond0",
9         :role => :internal,
10         :inet => {
11           :address => "10.0.48.17"
12         },
13         :bond => {
14           :mode => "802.3ad",
15           :lacprate => "fast",
16           :xmithashpolicy => "layer3+4",
17           :slaves => %w[enp25s0f0 enp25s0f1]
18         }
19       },
20       :external => {
21         :interface => "bond0.2",
22         :role => :external,
23         :inet => {
24           :address => "130.117.76.17"
25         },
26         :inet6 => {
27           :address => "2001:978:2:2c::172:11"
28         }
29       }
30     }
31   },
32   :planet => {
33     :replication => "enabled"
34   }
35 )
36
37 run_list(
38   "role[equinix-ams]",
39   "role[geodns]",
40   "role[backup]",
41   "role[planet]",
42   "role[planetdump]",
43   "recipe[tilelog]"
44 )