X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/2389cfa8b4288d3a57941227dfab79bc308deb37..97402948037953908f5c66fe3295838d02b5310c:/roles/horntail.rb diff --git a/roles/horntail.rb b/roles/horntail.rb index b1508edb4..afaf9460d 100644 --- a/roles/horntail.rb +++ b/roles/horntail.rb @@ -4,11 +4,12 @@ description "Master role applied to horntail" default_attributes( :networking => { :interfaces => { - :internal_ipv4 => { + :internal => { :interface => "bond0", :role => :internal, - :family => :inet, - :address => "10.0.64.10", + :inet => { + :address => "10.0.64.10" + }, :bond => { :mode => "802.3ad", :lacprate => "fast", @@ -16,22 +17,22 @@ default_attributes( :slaves => %w[enp25s0f0 enp25s0f1] } }, - :external_ipv4 => { + :external => { :interface => "bond0.101", :role => :external, - :family => :inet, - :address => "184.104.226.106" - }, - :external_ipv6 => { - :interface => "bond0.101", - :role => :external, - :family => :inet6, - :address => "2001:470:1:b3b::a" + :inet => { + :address => "184.104.226.106" + }, + :inet6 => { + :address => "2001:470:1:b3b::a" + } } } } ) run_list( - "role[equinix-dub]" + "role[equinix-dub]", + "role[geodns]", + "role[planet]" )