]> git.openstreetmap.org Git - chef.git/blob - roles/tabaluga.rb
Configure IPv6 on machines in Amsterdam
[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.63.1",
7     :last_address => "10.0.63.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_he => {
25         :interface => "bond0.3",
26         :role => :external,
27         :metric => 150,
28         :source_route_table => 100,
29         :inet => {
30           :address => "184.104.179.142",
31           :prefix => "27",
32           :gateway => "184.104.179.129"
33         },
34         :inet6 => {
35           :address => "2001:470:1:fa1::e",
36           :prefix => 64,
37           :gateway => "2001:470:1:fa1::1"
38         }
39       },
40       :external => {
41         :interface => "bond0.103",
42         :role => :external,
43         :source_route_table => 150,
44         :inet => {
45           :address => "82.199.86.110",
46           :prefix => "27",
47           :gateway => "82.199.86.97"
48         },
49         :inet6 => {
50           :address => "2001:4d78:500:5e3::e",
51           :prefix => 64,
52           :gateway => "2001:4d78:500:5e3::1"
53         }
54       }
55     }
56   },
57   :prometheus => {
58     :junos => {
59       "switch1" => { :address => "184.104.179.129", :labels => { "site" => "amsterdam" } }
60     },
61     :snmp => {
62       "pdu1" => { :address => "10.0.48.100", :modules => %w[apcups], :labels => { "site" => "amsterdam" } },
63       "pdu2" => { :address => "10.0.48.101", :modules => %w[apcups], :labels => { "site" => "amsterdam" } }
64     },
65     :metrics => {
66       :uplink_interface => {
67         :help => "Site uplink interface name",
68         :labels => { :site => "amsterdam", :name => "xe-[01]/2/0|ge-[01]/2/[02]" }
69       }
70     }
71   }
72 )
73
74 run_list(
75   "role[equinix-ams]",
76   "role[hp-g9]",
77   "role[blog-staging]",
78   "role[taginfo]",
79   "role[gateway]",
80   "recipe[dhcpd]"
81 )