]> git.openstreetmap.org Git - chef.git/blobdiff - roles/vhagar.rb
Merge interface families
[chef.git] / roles / vhagar.rb
index 3beb57764cce8240fbcf22c81f1e7813011fc3ca..304b212db76383d71f2720878e6f46c18ad9e375 100644 (file)
@@ -4,11 +4,12 @@ description "Master role applied to vhagar"
 default_attributes(
   :networking => {
     :interfaces => {
-      :internal_ipv4 => {
+      :internal => {
         :interface => "bond0",
         :role => :internal,
-        :family => :inet,
-        :address => "10.0.48.5",
+        :inet => {
+          :address => "10.0.48.5"
+        },
         :bond => {
           :mode => "802.3ad",
           :lacprate => "fast",
@@ -16,22 +17,30 @@ default_attributes(
           :slaves => %w[eno1 eno2 eno3 eno4 eno5 eno6]
         }
       },
-      :external_ipv4 => {
+      :external => {
         :interface => "bond0.2",
         :role => :external,
-        :family => :inet,
-        :address => "130.117.76.5"
-      },
-      :external_ipv6 => {
-        :interface => "bond0.2",
-        :role => :external,
-        :family => :inet6,
-        :address => "2001:978:2:2C::172:5"
+        :inet => {
+          :address => "130.117.76.5"
+        },
+        :inet6 => {
+          :address => "2001:978:2:2c::172:5"
+        }
+      }
+    }
+  },
+  :nominatim => {
+    :state => "standalone",
+    :flatnode_file => "/srv/nominatim.openstreetmap.org/planet-project/nodes.store",
+    :fpm_pools => {
+      "nominatim.openstreetmap.org" => {
+        :max_children => 200
       }
     }
   }
 )
 
 run_list(
-  "role[equinix-ams]"
+  "role[equinix-ams]",
+  "role[nominatim]"
 )