]> git.openstreetmap.org Git - chef.git/blob - roles/tabaluga.rb
Switch web site to readonly mode against Dublin
[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 => {
25         :interface => "bond0.3",
26         :role => :external,
27         :inet => {
28           :address => "184.104.179.142"
29         },
30         :inet6 => {
31           :address => "2001:470:1:fa1::e"
32         }
33       }
34     }
35   },
36   :prometheus => {
37     :junos => {
38       "switch1" => { :address => "184.104.179.129", :labels => { "site" => "amsterdam" } }
39     },
40     :snmp => {
41       "pdu1" => { :address => "10.0.48.100", :modules => %w[apcups], :labels => { "site" => "amsterdam" } },
42       "pdu2" => { :address => "10.0.48.101", :modules => %w[apcups], :labels => { "site" => "amsterdam" } }
43     },
44     :metrics => {
45       :uplink_interface => {
46         :help => "Site uplink interface name",
47         :labels => { :site => "amsterdam", :name => "ge-[01]/2/[02]" }
48       }
49     }
50   }
51 )
52
53 run_list(
54   "role[equinix-ams]",
55   "role[hp-g9]",
56   "role[blog-staging]",
57   "role[taginfo]",
58   "role[gateway]",
59   "recipe[dhcpd]"
60 )