X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/9991aabe9b4d94ad3c303f60d1b16a6e6c995f3d..2835205c501da417ff80ce4f06dc32d14c8c38bb:/roles/naga.rb diff --git a/roles/naga.rb b/roles/naga.rb index 4dec10f38..ab310808a 100644 --- a/roles/naga.rb +++ b/roles/naga.rb @@ -4,41 +4,43 @@ description "Master role applied to naga" default_attributes( :networking => { :interfaces => { - :external_ipv4 => { - :interface => "ens18", - :role => :external, - :family => :inet, - :address => "185.216.27.232", - :prefix => "24", - :gateway => "185.216.27.253" + :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_ipv6 => { - :interface => "ens18", + :external => { + :interface => "bond0.101", :role => :external, - :family => :inet6, - :address => "2a07:abc4:5::27:244", - :prefix => "24", - :gateway => "fe80::20c:29ff:fe4d:941b" + :inet => { + :address => "184.104.226.104" + }, + :inet6 => { + :address => "2001:470:1:b3b::8" + } } } - }, - :squid => { - :cache_mem => "12500 MB", - :cache_dir => "coss /store/squid/coss-01 128000 block-size=8192 max-size=262144 membufs=80" - }, - :tilecache => { - :tile_parent => "france.render.openstreetmap.org", - :tile_siblings => [ - "noomoahk.openstreetmap.org", - "nepomuk.openstreetmap.org", - "norbert.openstreetmap.org", - "ladon.openstreetmap.org", - "culebre.openstreetmap.org" - ] } ) run_list( - "role[proxgroup]", - "role[tilecache]" + "role[equinix-dub]", + "role[hp-g9]", + "role[subversion]", + "role[trac]", + "role[irc]", + "role[blogs]", + "role[munin]", + "role[switch2osm]", + "recipe[foundation::owg]", + "recipe[foundation::welcome]", + "recipe[stateofthemap::container]" )