]> git.openstreetmap.org Git - chef.git/blobdiff - roles/vhagar.rb
Increase memory limit for frontend memcache instances
[chef.git] / roles / vhagar.rb
index 3beb57764cce8240fbcf22c81f1e7813011fc3ca..b952a699fba7f93c03f74a156fb7b216903adae5 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,33 @@ default_attributes(
           :slaves => %w[eno1 eno2 eno3 eno4 eno5 eno6]
         }
       },
-      :external_ipv4 => {
-        :interface => "bond0.2",
+      :external => {
+        :interface => "bond0.3",
         :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 => "184.104.179.133"
+        },
+        :inet6 => {
+          :address => "2001:470:1:fa1::5"
+        }
+      }
+    }
+  },
+  :nominatim => {
+    :state => "standalone",
+    :flatnode_file => "/srv/nominatim.openstreetmap.org/planet-project/nodes.store",
+    :api_flavour => "python",
+    :api_workers => 24,
+    :api_pool_size => 10,
+    :fpm_pools => {
+      "nominatim.openstreetmap.org" => {
+        :max_children => 200
       }
     }
   }
 )
 
 run_list(
-  "role[equinix-ams]"
+  "role[equinix-ams]",
+  "role[nominatim]"
 )