]> git.openstreetmap.org Git - chef.git/blob - roles/norbert.rb
Update uplink interfaces for Amsterdam
[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_he => {
21         :interface => "bond0.3",
22         :role => :external,
23         :metric => 150,
24         :source_route_table => 100,
25         :inet => {
26           :address => "184.104.179.145",
27           :prefix => "27",
28           :gateway => "184.104.179.129"
29         }
30       },
31       :external => {
32         :interface => "bond0.103",
33         :role => :external,
34         :source_route_table => 150,
35         :inet => {
36           :address => "82.199.86.113",
37           :prefix => "27",
38           :gateway => "82.199.86.97"
39         }
40       }
41     }
42   },
43   :planet => {
44     :replication => "enabled"
45   }
46 )
47
48 run_list(
49   "role[equinix-ams]",
50   "role[geodns]",
51   "role[backup]",
52   "role[planet]",
53   "role[planetdump]",
54   "recipe[tilelog]"
55 )