X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/45eedc13e8411e714184adfa419380f8472e3bf3..b2dbf6bffb0f59ef340942fcdec0a9e36b33730a:/roles/odin.rb diff --git a/roles/odin.rb b/roles/odin.rb index abce74926..a7f836e18 100644 --- a/roles/odin.rb +++ b/roles/odin.rb @@ -4,11 +4,12 @@ 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", @@ -16,17 +17,15 @@ default_attributes( :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" + }, + :inet6 => { + :address => "2001:978:2:2c::172:f" + } } } },