X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/960aab171789210b26f3e9b83319fc492b4eda43..63499170498deaea484d0f4d2bceac1ecee5f635:/roles/tabaluga.rb diff --git a/roles/tabaluga.rb b/roles/tabaluga.rb index 20b4494dc..11678ec07 100644 --- a/roles/tabaluga.rb +++ b/roles/tabaluga.rb @@ -2,37 +2,70 @@ 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 => { - :external_ipv4 => { - :interface => "eth0", + :internal => { + :interface => "bond0", + :role => :internal, + :inet => { + :address => "10.0.48.14" + }, + :bond => { + :mode => "802.3ad", + :lacprate => "fast", + :xmithashpolicy => "layer3+4", + :slaves => %w[eno1 eno2] + } + }, + :external_he => { + :interface => "bond0.3", :role => :external, - :family => :inet, - :address => "5.9.150.236", - :prefix => "27", - :gateway => "5.9.150.225" + :metric => 150, + :source_route_table => 100, + :inet => { + :address => "184.104.179.142", + :prefix => "27", + :gateway => "184.104.179.129" + } }, - :external_ipv6 => { - :interface => "eth0", + :external => { + :interface => "bond0.103", :role => :external, - :family => :inet6, - :address => "2a01:4f8:190:33eb::2", - :prefix => "64", - :gateway => "fe80::1" + :source_route_table => 150, + :inet => { + :address => "82.199.86.110", + :prefix => "27", + :gateway => "82.199.86.97" + } } } }, - :squid => { - :cache_mem => "12500 MB", - :cache_dir => "coss /store/squid/coss-01 128000 block-size=8192 max-size=262144 membufs=80" - }, - :tilecache => { - :ip_bucket_refill => "6144", - :net_bucket_refill => "24576" + :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[hetzner]", - "role[tilecache]" + "role[equinix-ams]", + "role[hp-g9]", + "role[blog-staging]", + "role[taginfo]", + "role[gateway]", + "recipe[dhcpd]" )