X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/77c15edb86c1c5a78904db4da60a4806cc3e1bb6..2835205c501da417ff80ce4f06dc32d14c8c38bb:/roles/spike-06.rb diff --git a/roles/spike-06.rb b/roles/spike-06.rb index 8ecaeecb7..2e93f41a0 100644 --- a/roles/spike-06.rb +++ b/roles/spike-06.rb @@ -4,32 +4,37 @@ description "Master role applied to spike-06" default_attributes( :networking => { :interfaces => { - :internal_ipv4 => { + :internal => { :interface => "bond0", :role => :internal, - :family => :inet, - :address => "10.0.48.11", + :inet => { + :address => "10.0.48.11" + }, :bond => { + :mode => "802.3ad", + :lacprate => "fast", + :xmithashpolicy => "layer3+4", :slaves => %w[eno1 eno2] } }, - :external_ipv4 => { + :external => { :interface => "bond0.2", :role => :external, - :family => :inet, - :address => "130.117.76.11" - }, - :external_ipv6 => { - :interface => "bond0.2", - :role => :external, - :family => :inet6, - :address => "2001:978:2:2C::172:B" + :inet => { + :address => "130.117.76.11" + }, + :inet6 => { + :address => "2001:978:2:2c::172:b" + } } } } ) run_list( - "role[equinix]", - "role[hp-g9]" + "role[equinix-ams]", + "role[hp-g9]", + "role[web-frontend]", + "role[web-statistics]", + "role[web-cleanup]" )