X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/aca8c4a423f9c883abbafe30c02f0f7272ace6b9..2835205c501da417ff80ce4f06dc32d14c8c38bb:/roles/norbert.rb diff --git a/roles/norbert.rb b/roles/norbert.rb index 084037f56..9985bbda3 100644 --- a/roles/norbert.rb +++ b/roles/norbert.rb @@ -2,49 +2,43 @@ name "norbert" description "Master role applied to norbert" default_attributes( - :accounts => { - :users => { - :yellowbkpk => { :status => :administrator }, - :pnorman => { :status => :user } - } - }, - :exim => { - :aliases => { - :root => "yellowbkpk" - } - }, :networking => { :interfaces => { - :internal_ipv4 => { - :interface => "eth1.2801", + :internal => { + :interface => "bond0", :role => :internal, - :family => :inet, - :address => "10.0.0.5" + :inet => { + :address => "10.0.48.17" + }, + :bond => { + :mode => "802.3ad", + :lacprate => "fast", + :xmithashpolicy => "layer3+4", + :slaves => %w[enp25s0f0 enp25s0f1] + } }, - :external_ipv4 => { - :interface => "eth1.2800", + :external => { + :interface => "bond0.2", :role => :external, - :family => :inet, - :address => "193.60.236.17" + :inet => { + :address => "130.117.76.17" + }, + :inet6 => { + :address => "2001:978:2:2c::172:11" + } } } }, - :sysfs => { - :hdd_tune => { - :comment => "Tune the queue for improved performance", - :parameters => { - "block/cciss\!c0d0/queue/nr_requests" => "512", - "block/cciss\!c0d1/queue/nr_requests" => "512", - "block/cciss\!c0d0/queue/scheduler" => "noop", - "block/cciss\!c0d1/queue/scheduler" => "noop", - "block/sda/queue/nr_requests" => "512", - "block/sda/queue/scheduler" => "deadline" - } - } + :planet => { + :replication => "enabled" } ) run_list( - "role[ucl-slough]", - "role[hp-g5]" + "role[equinix-ams]", + "role[geodns]", + "role[backup]", + "role[planet]", + "role[planetdump]", + "recipe[tilelog]" )