X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/221f4b205645d563bae164fc6882a9376bcf7b43..76dc63f66e40eb9e9dabf3c712a5298148d9f2e4:/roles/ladon.rb diff --git a/roles/ladon.rb b/roles/ladon.rb new file mode 100644 index 000000000..68cd92325 --- /dev/null +++ b/roles/ladon.rb @@ -0,0 +1,35 @@ +name "ladon" +description "Master role applied to ladon" + +default_attributes( + :networking => { + :interfaces => { + :external_ipv4 => { + :interface => "bond0", + :role => :external, + :family => :inet, + :address => "83.212.2.116", + :prefix => "29", + :gateway => "83.212.2.113", + :bond => { + :mode => "802.3ad", + :miimon => "100", + :xmithashpolixt => "layer3+4", + :slaves => %w(eth0 eth1) + } + }, + :external_ipv6 => { + :interface => "bond0", + :role => :external, + :family => :inet6, + :address => "2001:648:2ffe:4::116", + :prefix => "64", + :gateway => "2001:648:2ffe:4::1" + } + } + } +) + +run_list( + "role[grnet]" +)