]> git.openstreetmap.org Git - chef.git/blobdiff - roles/tabaluga.rb
Merge interface families
[chef.git] / roles / tabaluga.rb
index 8645291918de796b0a19b15323b557898658e735..3293268edbf715324ba8be186ea5a9f788b5c951 100644 (file)
@@ -2,35 +2,41 @@ name "tabaluga"
 description "Master role applied to tabaluga"
 
 default_attributes(
+  :dhcpd => {
+    :first_address => "10.0.62.1",
+    :last_address => "10.0.62.254"
+  },
   :networking => {
     :interfaces => {
-      :internal_ipv4 => {
+      :internal => {
         :interface => "bond0",
         :role => :internal,
-        :family => :inet,
-        :address => "10.0.48.14",
+        :inet => {
+          :address => "10.0.48.14"
+        },
         :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.14"
-      },
-      :external_ipv6 => {
-        :interface => "bond0.2",
-        :role => :external,
-        :family => :inet6,
-        :address => "2001:978:2:2C::172:E"
+        :inet => {
+          :address => "130.117.76.14"
+        },
+        :inet6 => {
+          :address => "2001:978:2:2c::172:e"
+        }
       }
     }
   }
 )
 
 run_list(
-  "role[equinix]",
+  "role[equinix-ams]",
   "role[hp-g9]",
-  "role[wiki]"
+  "recipe[dhcpd]"
 )