X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/b2567ba04c9d6b93e2d3b85244a13dfdc1b0e3d3..97402948037953908f5c66fe3295838d02b5310c:/roles/odin.rb diff --git a/roles/odin.rb b/roles/odin.rb index 6a7180339..6d29b734c 100644 --- a/roles/odin.rb +++ b/roles/odin.rb @@ -4,26 +4,35 @@ description "Master role applied to odin" default_attributes( :networking => { :interfaces => { - :internal_ipv4 => { + :internal => { :interface => "bond0", :role => :internal, - :family => :inet, - :address => "10.0.48.15", + :inet => { + :address => "10.0.48.15" + }, :bond => { + :mode => "802.3ad", + :lacprate => "fast", + :xmithashpolicy => "layer3+4", :slaves => %w[eno1 eno2] } }, - :external_ipv4 => { + :external => { :interface => "bond0.2", :role => :external, - :family => :inet, - :address => "130.117.76.15" - }, - :external_ipv6 => { - :interface => "bond0.2", - :role => :external, - :family => :inet6, - :address => "2001:978:2:2C::172:F" + :inet => { + :address => "130.117.76.15", + :prefix => "27", + :gateway => "130.117.76.1" + }, + :inet6 => { + :address => "2001:978:2:2c::172:f", + :prefix => "64", + :gateway => "2001:978:2:2c::172:1", + :routes => { + "2001:470:1:b3b::/64" => { :type => "unreachable" } + } + } } } }, @@ -47,7 +56,7 @@ default_attributes( }, :tile => { :database => { - :cluster => "12/main", + :cluster => "14/main", :postgis => "3" }, :mapnik => "3.1",