X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/b3538164e1ccbc85adc78d47cdcd9ba4e456aacf..63499170498deaea484d0f4d2bceac1ecee5f635:/roles/tabaluga.rb?ds=inline diff --git a/roles/tabaluga.rb b/roles/tabaluga.rb index 60b585475..11678ec07 100644 --- a/roles/tabaluga.rb +++ b/roles/tabaluga.rb @@ -2,6 +2,10 @@ name "tabaluga" description "Master role applied to tabaluga" default_attributes( + :dhcpd => { + :first_address => "10.0.63.1", + :last_address => "10.0.63.254" + }, :networking => { :interfaces => { :internal => { @@ -17,21 +21,51 @@ default_attributes( :slaves => %w[eno1 eno2] } }, + :external_he => { + :interface => "bond0.3", + :role => :external, + :metric => 150, + :source_route_table => 100, + :inet => { + :address => "184.104.179.142", + :prefix => "27", + :gateway => "184.104.179.129" + } + }, :external => { - :interface => "bond0.2", + :interface => "bond0.103", :role => :external, + :source_route_table => 150, :inet => { - :address => "184.104.179.142" - }, - :inet6 => { - :address => "2001:470:1:fa1::e" + :address => "82.199.86.110", + :prefix => "27", + :gateway => "82.199.86.97" } } } + }, + :prometheus => { + :junos => { + "switch1" => { :address => "184.104.179.129", :labels => { "site" => "amsterdam" } } + }, + :snmp => { + "pdu1" => { :address => "10.0.48.100", :modules => %w[apcups], :labels => { "site" => "amsterdam" } }, + "pdu2" => { :address => "10.0.48.101", :modules => %w[apcups], :labels => { "site" => "amsterdam" } } + }, + :metrics => { + :uplink_interface => { + :help => "Site uplink interface name", + :labels => { :site => "amsterdam", :name => "ge-[01]/2/[02]" } + } + } } ) run_list( "role[equinix-ams]", - "role[hp-g9]" + "role[hp-g9]", + "role[blog-staging]", + "role[taginfo]", + "role[gateway]", + "recipe[dhcpd]" )