X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/1956dff8fd5b5f2d99184c4ffcbe8f98b5a0af80..b63bdc407c3b2ea35c0574ccf6fc10f78bb9f26d:/roles/idris.rb diff --git a/roles/idris.rb b/roles/idris.rb index 6805c7da4..aec768e82 100644 --- a/roles/idris.rb +++ b/roles/idris.rb @@ -5,15 +5,34 @@ default_attributes( :networking => { :interfaces => { :internal_ipv4 => { - :interface => "eth0", + :interface => "bond0", :role => :internal, :family => :inet, - :address => "10.0.0.4" + :address => "10.0.64.6", + :bond => { + :mode => "802.3ad", + :lacprate => "fast", + :xmithashpolicy => "layer3+4", + :slaves => %w[eno1 eno2 eno3 eno4 eno49 eno50] + } + }, + :external_ipv4 => { + :interface => "bond0.101", + :role => :external, + :family => :inet, + :address => "184.104.226.102" + }, + :external_ipv6 => { + :interface => "bond0.101", + :role => :external, + :family => :inet6, + :address => "2001:470:1:b3b::6" } } } ) run_list( - "role[ucl-internal]" + "role[equinix-dub]", + "role[hp-g9]" )