X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/32b18fe0a88c95a91a18b43f7887514de4be0269..ec4ff72f33f13089bc2f3cd64087ece880eb5135:/roles/tabaluga.rb diff --git a/roles/tabaluga.rb b/roles/tabaluga.rb index 864529191..3667d73df 100644 --- a/roles/tabaluga.rb +++ b/roles/tabaluga.rb @@ -4,33 +4,36 @@ description "Master role applied to tabaluga" default_attributes( :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", + :xmithashpolicy => "layer3+4", :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" + } } } } ) run_list( - "role[equinix]", + "role[equinix-ams]", "role[hp-g9]", - "role[wiki]" + "role[blog-staging]", + "role[taginfo]" )