]> git.openstreetmap.org Git - chef.git/blobdiff - roles/karm.rb
fix rubocop offenses
[chef.git] / roles / karm.rb
index e200ce7cbac23edb65c3144135857b34f6350aeb..a9c529f237e51180cde5f5c0b9ff68494004e507 100644 (file)
@@ -11,11 +11,13 @@ default_attributes(
   :networking => {
     :interfaces => {
       :internal_ipv4 => {
-        :interface => "enp1s0f0",
+        :interface => "bond0",
         :role => :internal,
         :family => :inet,
-        :address => "146.179.159.168",
-        :hwaddress => "0c:c4:7a:a3:aa:ac"
+        :address => "10.0.48.50",
+        :bond => {
+          :slaves => %w[enp1s0f0 enp1s0f1]
+        }
       }
     }
   },
@@ -26,7 +28,8 @@ default_attributes(
         :work_mem => "64MB",
         :maintenance_work_mem => "1GB",
         :effective_cache_size => "180GB",
-        :effective_io_concurrency => "256"
+        :effective_io_concurrency => "256",
+        :random_page_cost => "1.1"
       }
     }
   },
@@ -58,6 +61,5 @@ default_attributes(
 
 run_list(
   "role[ic]",
-  "role[db-master]",
-  "role[db-backup]"
+  "role[db-slave]"
 )