X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/be47746a35163c14cf45b9b929e3f8a770addbb2..2835205c501da417ff80ce4f06dc32d14c8c38bb:/roles/naga.rb diff --git a/roles/naga.rb b/roles/naga.rb index 3582d5f15..ab310808a 100644 --- a/roles/naga.rb +++ b/roles/naga.rb @@ -4,26 +4,28 @@ description "Master role applied to naga" default_attributes( :networking => { :interfaces => { - :internal_ipv4 => { + :internal => { :interface => "bond0", :role => :internal, - :family => :inet, - :address => "10.0.64.8", + :inet => { + :address => "10.0.64.8" + }, :bond => { - :slaves => %w[eno1 eno2] + :mode => "802.3ad", + :lacprate => "fast", + :xmithashpolicy => "layer3+4", + :slaves => %w[eno1 eno2 eno3 eno4 eno49 eno50] } }, - :external_ipv4 => { - :interface => "bond0.2", + :external => { + :interface => "bond0.101", :role => :external, - :family => :inet, - :address => "184.104.226.104" - }, - :external_ipv6 => { - :interface => "bond0.2", - :role => :external, - :family => :inet6, - :address => "2001:470:1:b3b::8" + :inet => { + :address => "184.104.226.104" + }, + :inet6 => { + :address => "2001:470:1:b3b::8" + } } } } @@ -31,5 +33,14 @@ default_attributes( run_list( "role[equinix-dub]", - "role[hp-g9]" + "role[hp-g9]", + "role[subversion]", + "role[trac]", + "role[irc]", + "role[blogs]", + "role[munin]", + "role[switch2osm]", + "recipe[foundation::owg]", + "recipe[foundation::welcome]", + "recipe[stateofthemap::container]" )