X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/ee6580d55e1bbed06787ac3e5f18af1bb35c8e6d..c580104cc2296be4e5feddd87205d1d414e594d7:/roles/ouroboros.rb diff --git a/roles/ouroboros.rb b/roles/ouroboros.rb index d1d5d7271..6c35f01c8 100644 --- a/roles/ouroboros.rb +++ b/roles/ouroboros.rb @@ -2,39 +2,35 @@ name "ouroboros" description "Master role applied to ouroboros" default_attributes( - :chef => { - :client => { - :version => "11.18.0-1" - } - }, :networking => { :interfaces => { :internal_ipv4 => { - :interface => "eth0", + :interface => "bond0", :role => :internal, :family => :inet, - :address => "146.179.159.172", - :hwaddress => "00:23:7d:ea:81:38" + :address => "10.0.48.4", + :bond => { + :slaves => %w[eth0 eth1] + } }, :external_ipv4 => { - :interface => "eth1", + :interface => "bond0.2", :role => :external, :family => :inet, - :address => "193.63.75.106", - :hwaddress => "00:23:7d:ea:81:3a" + :address => "130.117.76.4" }, :external_ipv6 => { - :interface => "eth1", + :interface => "bond0.2", :role => :external, :family => :inet6, - :address => "2001:630:12:500:223:7dff:feea:813a" + :address => "2001:978:2:2C::172:4" } } } ) run_list( - "role[ic]", - "role[hp-g6]", + "role[equinix]", + "role[hp-dl360-g6]", "role[wiki]" )