]> git.openstreetmap.org Git - chef.git/blobdiff - roles/gorwen.rb
Hack up something to manage certificates for birthday20
[chef.git] / roles / gorwen.rb
index 3f9a1f3284e79155b48bc396fc39de44ab25a824..929ffbac0c713f2823ad26cb6022a0fbc6230935 100644 (file)
@@ -2,13 +2,18 @@ name "gorwen"
 description "Master role applied to gorwen"
 
 default_attributes(
+  :dhcpd => {
+    :first_address => "10.0.78.1",
+    :last_address => "10.0.78.254"
+  },
   :networking => {
     :interfaces => {
-      :internal_ipv4 => {
+      :internal => {
         :interface => "bond0",
         :role => :internal,
-        :family => :inet,
-        :address => "10.0.64.11",
+        :inet => {
+          :address => "10.0.64.12"
+        },
         :bond => {
           :mode => "802.3ad",
           :lacprate => "fast",
@@ -16,17 +21,15 @@ default_attributes(
           :slaves => %w[eno1 eno2 eno3 eno4 ens1f0 ens1f1]
         }
       },
-      :external_ipv4 => {
+      :external => {
         :interface => "bond0.101",
         :role => :external,
-        :family => :inet,
-        :address => "184.104.226.107"
-      },
-      :external_ipv6 => {
-        :interface => "bond0.101",
-        :role => :external,
-        :family => :inet6,
-        :address => "2001:470:1:b3b::b"
+        :inet => {
+          :address => "184.104.226.108"
+        },
+        :inet6 => {
+          :address => "2001:470:1:b3b::c"
+        }
       }
     }
   }
@@ -35,5 +38,6 @@ default_attributes(
 run_list(
   "role[equinix-dub]",
   "role[hp-dl360e-g8]",
-  "role[overpass-query]"
+  "role[community]",
+  "recipe[dhcpd]"
 )