X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/fc5f5917c99c4dc8744c242191624453533ab67f..17a8df13066867441cb94141ce31a8ecd21df780:/roles/tabaluga.rb diff --git a/roles/tabaluga.rb b/roles/tabaluga.rb index d682df74a..a90273778 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 => { @@ -28,10 +32,29 @@ default_attributes( } } } + }, + :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]" )