X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/d1431acb11401014ee807cb1c1c2793136c8e25d..0fb1998d0fa1a3867b036e08ef2f637ea14e33ce:/roles/longma.rb diff --git a/roles/longma.rb b/roles/longma.rb index 6639332e3..2b362d8eb 100644 --- a/roles/longma.rb +++ b/roles/longma.rb @@ -2,46 +2,37 @@ name "longma" description "Master role applied to longma" default_attributes( - :exim => { - :aliases => { - :root => "ceasar" - } - }, :networking => { :interfaces => { + :internal_ipv4 => { + :interface => "bond0", + :role => :internal, + :family => :inet, + :address => "10.0.64.13", + :bond => { + :mode => "802.3ad", + :lacprate => "fast", + :xmithashpolicy => "layer3+4", + :slaves => %w[enp68s0f0 enp68s0f1 enp68s0f2 enp68s0f3] + } + }, :external_ipv4 => { - :interface => "ens160", + :interface => "bond0.101", :role => :external, :family => :inet, - :address => "140.110.240.7", - :prefix => "24", - :gateway => "140.110.240.254" + :address => "184.104.226.109" }, :external_ipv6 => { - :interface => "ens160", + :interface => "bond0.101", :role => :external, :family => :inet6, - :address => "2001:e10:2000:240::7", - :prefix => "64", - :gateway => "2001:e10:2000:240::254" + :address => "2001:470:1:b3b::d" } } - }, - :squid => { - :cache_mem => "12500 MB", - :cache_dir => "coss /store/squid/coss-01 128000 block-size=8192 max-size=262144 membufs=80" - }, - :tilecache => { - :tile_parent => "hsinchu.render.openstreetmap.org", - :tile_siblings => [ - "balerion.openstreetmap.org", - "waima.openstreetmap.org", - "tuatara.openstreetmap.org" - ] } ) run_list( - "role[nchc]", - "role[tilecache]" + "role[equinix-dub]", + "role[nominatim]" )