X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/0abf66cbcc23b80bd50a9e91675f0d0988539a86..59baf108f689be6bf6258f2acbf50c7ff41dc2ac:/roles/dulcy.rb diff --git a/roles/dulcy.rb b/roles/dulcy.rb index c6f34b1cb..5c067440a 100644 --- a/roles/dulcy.rb +++ b/roles/dulcy.rb @@ -4,26 +4,28 @@ description "Master role applied to dulcy" default_attributes( :networking => { :interfaces => { - :internal_ipv4 => { + :internal => { :interface => "bond0", :role => :internal, - :family => :inet, - :address => "10.0.48.9", + :inet => { + :address => "10.0.48.9" + }, :bond => { + :mode => "802.3ad", + :lacprate => "fast", + :xmithashpolicy => "layer3+4", :slaves => %w[ens18f0 ens18f1] } }, - :external_ipv4 => { + :external => { :interface => "bond0.2", :role => :external, - :family => :inet, - :address => "130.117.76.9" - }, - :external_ipv6 => { - :interface => "bond0.2", - :role => :external, - :family => :inet6, - :address => "2001:978:2:2C::172:9" + :inet => { + :address => "130.117.76.9" + }, + :inet6 => { + :address => "2001:978:2:2c::172:9" + } } } }, @@ -32,21 +34,24 @@ default_attributes( :settings => { :defaults => { :work_mem => "240MB", - :fsync => "off", + :fsync => "on", :effective_io_concurrency => "500" } } }, :nominatim => { - :state => "off", + :state => "standalone", :dbcluster => "14/main", :postgis => "3", :flatnode_file => "/ssd/nominatim/nodes.store", - :logdir => "/ssd/nominatim/log" + :logdir => "/ssd/nominatim/log", + :config => { + :forward_dependencies => "yes" + } } ) run_list( "role[equinix-ams]", - "role[nominatim-v4]" + "role[nominatim]" )