X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/dbfe66d5c438af1b566ace0704631f40ae7cc050..63499170498deaea484d0f4d2bceac1ecee5f635:/roles/faffy.rb diff --git a/roles/faffy.rb b/roles/faffy.rb index 2d1808708..59d2633e3 100644 --- a/roles/faffy.rb +++ b/roles/faffy.rb @@ -4,59 +4,45 @@ description "Master role applied to faffy" default_attributes( :networking => { :interfaces => { - :internal_ipv4 => { - :interface => "eth0", + :internal => { + :interface => "bond0", :role => :internal, - :family => :inet, - :address => "10.0.0.7" + :inet => { + :address => "10.0.48.3" + }, + :bond => { + :mode => "802.3ad", + :lacprate => "fast", + :xmithashpolicy => "layer3+4", + :slaves => %w[eno1 eno2 eno3 eno4 eno5 eno6] + } }, - :external_ipv4 => { - :interface => "eth1", + :external_he => { + :interface => "bond0.3", :role => :external, - :family => :inet, - :address => "128.40.168.108" - } - } - }, - :rsyncd => { - :modules => { - :agri_imagery => { - :comment => "AGRI Imagery Archive", - :path => "/mnt/md0/agri", - :read_only => true, - :write_only => false, - :list => true, - :uid => "nobody", - :gid => "nogroup", - :transfer_logging => false, - :exclude => [ ".*" ], - :max_connections => 10, - :ignore_errors => true, - :ignore_nonreadable => true, - :timeout => 3600, - :refuse_options => [ "checksum" ] + :metric => 150, + :source_route_table => 100, + :inet => { + :address => "184.104.179.131", + :prefix => "27", + :gateway => "184.104.179.129" + } }, - :agri_extra => { - :comment => "AGRI Extras Archive", - :path => "/var/www/agri.openstreetmap.org/download", - :read_only => true, - :write_only => false, - :list => true, - :uid => "nobody", - :gid => "nogroup", - :transfer_logging => false, - :exclude => [ ".*" ], - :max_connections => 10, - :ignore_errors => true, - :ignore_nonreadable => true, - :timeout => 3600, - :refuse_options => [ "checksum" ] + :external => { + :interface => "bond0.103", + :role => :external, + :source_route_table => 150, + :inet => { + :address => "82.199.86.99", + :prefix => "27", + :gateway => "82.199.86.97" + } } } } ) run_list( - "role[ucl-wates]", - "recipe[rsyncd]" + "role[equinix-ams]", + "role[dev]" )