X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/29e07b49f54063b73c24ec645f2cda9035846326..2d6d56f75a35f748f19411b043b7fc430bdb3c6e:/roles/pummelzacken.rb diff --git a/roles/pummelzacken.rb b/roles/pummelzacken.rb index d237bd053..b6d866984 100644 --- a/roles/pummelzacken.rb +++ b/roles/pummelzacken.rb @@ -4,14 +4,20 @@ description "Master role applied to pummelzacken" default_attributes( :networking => { :interfaces => { + :bond => { + :interface => "bond0", + :bond => { + :slaves => %w[eno1 enp5s0f0] + } + }, :internal_ipv4 => { - :interface => "em1.2801", + :interface => "bond0.2801", :role => :internal, :family => :inet, :address => "10.0.0.20" }, :external_ipv4 => { - :interface => "em1.2800", + :interface => "bond0.2800", :role => :external, :family => :inet, :address => "193.60.236.18" @@ -32,6 +38,12 @@ default_attributes( } } }, + :apache => { + :event => { + :max_request_workers => 3000, + :threads_per_child => 70 + } + }, :nominatim => { :state => "standalone", :dbadmins => %w[lonvia tomh], @@ -50,11 +62,6 @@ default_attributes( "isearch" => "/ssd/tablespaces/isearch", "daux" => "/data/tablespaces/daux", "iaux" => "/data/tablespaces/iaux" - }, - :fpm_pools => { - :www => { - :max_children => "40" - } } } )