]> git.openstreetmap.org Git - chef.git/commitdiff
Enable network bonding on odin
authorTom Hughes <tom@compton.nu>
Mon, 16 Oct 2017 17:36:06 +0000 (18:36 +0100)
committerTom Hughes <tom@compton.nu>
Mon, 16 Oct 2017 17:36:06 +0000 (18:36 +0100)
roles/odin.rb

index d19360027c388f093eb06229f443c54b01c23ef2..dc5a612d36b2e963cef54edb5094a577ae2e960e 100644 (file)
@@ -5,15 +5,18 @@ default_attributes(
   :networking => {
     :interfaces => {
       :external_ipv4 => {
-        :interface => "eno1",
+        :interface => "bond0",
         :role => :external,
         :family => :inet,
         :address => "130.225.254.123",
         :prefix => "23",
-        :gateway => "130.225.254.97"
+        :gateway => "130.225.254.97",
+        :bond => {
+          :slaves => %w[eno1 eno2]
+        }
       },
       :external_ipv6 => {
-        :interface => "eno1",
+        :interface => "bond0",
         :role => :external,
         :family => :inet6,
         :address => "2001:878:346::123",