]> git.openstreetmap.org Git - chef.git/blobdiff - roles/grindtooth.rb
Switch grindtooth to use systemd-networkd
[chef.git] / roles / grindtooth.rb
index 7fc2daea98ee2ce2e7126eefad34c36a094652cc..9d1cad866e2cebe63723affb60152802a74f8662 100644 (file)
@@ -2,23 +2,28 @@ name "grindtooth"
 description "Master role applied to grindtooth"
 
 default_attributes(
 description "Master role applied to grindtooth"
 
 default_attributes(
-  :accounts => {
-    :users => {
-      :jochen => { :status => :administrator }
-    }
-  },
   :networking => {
   :networking => {
+    :engine => "systemd-networkd",
     :interfaces => {
     :interfaces => {
-      :internal_ipv4 => {
-        :interface => "eth0",
+      :internal => {
+        :interface => "enp3s0f0.2801",
         :role => :internal,
         :role => :internal,
-        :family => :inet,
-        :address => "10.0.0.19"
+        :inet => {
+          :address => "10.0.0.19"
+        }
+      },
+      :external => {
+        :interface => "enp3s0f0.2800",
+        :role => :external,
+        :inet => {
+          :address => "193.60.236.15"
+        }
       }
     }
   }
 )
 
 run_list(
       }
     }
   }
 )
 
 run_list(
-  "role[ucl-internal]"
+  "role[ucl]",
+  "role[taginfo]"
 )
 )