X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/b858a6e99d90888649d98b2e66399799eb33dd4c..2835205c501da417ff80ce4f06dc32d14c8c38bb:/roles/muirdris.rb diff --git a/roles/muirdris.rb b/roles/muirdris.rb index f3717a54b..81cb63953 100644 --- a/roles/muirdris.rb +++ b/roles/muirdris.rb @@ -2,13 +2,17 @@ name "muirdris" description "Master role applied to muirdris" default_attributes( + :memcached => { + :memory_limit => 128 * 1024 + }, :networking => { :interfaces => { - :internal_ipv4 => { + :internal => { :interface => "bond0", :role => :internal, - :family => :inet, - :address => "10.0.64.15", + :inet => { + :address => "10.0.64.15" + }, :bond => { :mode => "802.3ad", :lacprate => "fast", @@ -16,22 +20,21 @@ default_attributes( :slaves => %w[eno1 eno2 eno3 eno4 eno5 eno6] } }, - :external_ipv4 => { + :external => { :interface => "bond0.101", :role => :external, - :family => :inet, - :address => "184.104.226.111" - }, - :external_ipv6 => { - :interface => "bond0.101", - :role => :external, - :family => :inet6, - :address => "2001:470:1:b3b::f" + :inet => { + :address => "184.104.226.111" + }, + :inet6 => { + :address => "2001:470:1:b3b::f" + } } } } ) run_list( - "role[equinix-dub]" + "role[equinix-dub]", + "role[gps-tile]" )