X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/68e068818d559ef35bdf2a138a93596337828ef9..968ffb7b7c28a0673554aba399ec55549dc6a41c:/roles/tabaluga.rb diff --git a/roles/tabaluga.rb b/roles/tabaluga.rb index 8094e63c0..df8d76ea7 100644 --- a/roles/tabaluga.rb +++ b/roles/tabaluga.rb @@ -3,16 +3,17 @@ description "Master role applied to tabaluga" default_attributes( :dhcpd => { - :first_address => "10.0.62.1", - :last_address => "10.0.62.254" + :first_address => "10.0.63.1", + :last_address => "10.0.63.254" }, :networking => { :interfaces => { - :internal_ipv4 => { + :internal => { :interface => "bond0", :role => :internal, - :family => :inet, - :address => "10.0.48.14", + :inet => { + :address => "10.0.48.14" + }, :bond => { :mode => "802.3ad", :lacprate => "fast", @@ -20,17 +21,15 @@ default_attributes( :slaves => %w[eno1 eno2] } }, - :external_ipv4 => { - :interface => "bond0.2", + :external => { + :interface => "bond0.3", :role => :external, - :family => :inet, - :address => "130.117.76.14" - }, - :external_ipv6 => { - :interface => "bond0.2", - :role => :external, - :family => :inet6, - :address => "2001:978:2:2C::172:E" + :inet => { + :address => "184.104.179.142" + }, + :inet6 => { + :address => "2001:470:1:fa1::e" + } } } } @@ -39,6 +38,6 @@ default_attributes( run_list( "role[equinix-ams]", "role[hp-g9]", - "role[wiki]", + "role[gateway]", "recipe[dhcpd]" )