X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/de48d16a2549f1baa8c64eb0b99290b923160400..9e3d6bc2332036591015cf6171a685536e26b3c1:/roles/naga.rb diff --git a/roles/naga.rb b/roles/naga.rb index 8c09f2dbd..d212b6680 100644 --- a/roles/naga.rb +++ b/roles/naga.rb @@ -2,37 +2,71 @@ name "naga" description "Master role applied to naga" default_attributes( - :hardware => { - :shm_size => "38g" - }, :networking => { :interfaces => { - :external_ipv4 => { - :interface => "eth0", + :internal => { + :interface => "bond0", + :role => :internal, + :inet => { + :address => "10.0.64.8" + }, + :bond => { + :mode => "802.3ad", + :lacprate => "fast", + :xmithashpolicy => "layer3+4", + :slaves => %w[eno1 eno2 eno3 eno4 eno49 eno50] + } + }, + :external_he => { + :interface => "bond0.101", :role => :external, - :family => :inet, - :address => "185.116.130.151", - :prefix => "24", - :gateway => "185.116.130.151" + :source_route_table => 100, + :inet => { + :address => "184.104.226.104", + :prefix => "27", + :gateway => "184.104.226.97" + }, + :inet6 => { + :address => "2001:470:1:b3b::8", + :prefix => 64, + :gateway => "2001:470:1:b3b::1" + } + }, + :external => { + :interface => "bond0.203", + :role => :external, + :metric => 150, + :source_route_table => 150, + :inet => { + :address => "87.252.214.101", + :prefix => "27", + :gateway => "87.252.214.97" + }, + :inet6 => { + :address => "2001:4d78:fe03:1c::8", + :prefix => 64, + :gateway => "2001:4d78:fe03:1c::1" + } } } - }, - :squid => { - :version => 4, - :cache_mem => "32768 MB", - :cache_dir => [ - "rock /store/squid/rock-4096 20000 swap-timeout=200 slot-size=4096 max-size=3996", - "rock /store/squid/rock-8192 25000 swap-timeout=200 slot-size=8192 min-size=3997 max-size=8092", - "rock /store/squid/rock-16384 35000 swap-timeout=200 slot-size=16384 min-size=8093 max-size=16284", - "rock /store/squid/rock-32768 45000 swap-timeout=200 slot-size=32768 min-size=16285 max-size=262144" - ] - }, - :tilecache => { - :tile_parent => "france.render.openstreetmap.org" } ) run_list( - "role[fullsave]", - "role[tilecache]" + "role[equinix-dub]", + "role[hp-g9]", + "role[subversion]", + "role[trac]", + "role[irc]", + "role[blogs]", + "role[switch2osm]", + "recipe[foundation::birthday]", + "recipe[foundation::mastodon]", + "recipe[foundation::owg]", + "recipe[foundation::welcome]", + "recipe[stateofthemap::container]", + "recipe[hot]", + "recipe[ideditor]", + "recipe[dmca]", + "role[otrs]" )