]> git.openstreetmap.org Git - chef.git/blob - roles/tabaluga.rb
Add new Equinix addresses to Amsterdam hosts
[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       },
35       :external => {
36         :interface => "bond0.103",
37         :role => :external,
38         :source_route_table => 150,
39         :inet => {
40           :address => "82.199.86.110",
41           :prefix => "27",
42           :gateway => "82.199.86.97"
43         }
44       }
45     }
46   },
47   :prometheus => {
48     :junos => {
49       "switch1" => { :address => "184.104.179.129", :labels => { "site" => "amsterdam" } }
50     },
51     :snmp => {
52       "pdu1" => { :address => "10.0.48.100", :modules => %w[apcups], :labels => { "site" => "amsterdam" } },
53       "pdu2" => { :address => "10.0.48.101", :modules => %w[apcups], :labels => { "site" => "amsterdam" } }
54     },
55     :metrics => {
56       :uplink_interface => {
57         :help => "Site uplink interface name",
58         :labels => { :site => "amsterdam", :name => "ge-[01]/2/[02]" }
59       }
60     }
61   }
62 )
63
64 run_list(
65   "role[equinix-ams]",
66   "role[hp-g9]",
67   "role[blog-staging]",
68   "role[taginfo]",
69   "role[gateway]",
70   "recipe[dhcpd]"
71 )