]> git.openstreetmap.org Git - chef.git/commitdiff
Drop ironbelly role
authorTom Hughes <tom@compton.nu>
Fri, 6 Dec 2024 18:18:23 +0000 (18:18 +0000)
committerTom Hughes <tom@compton.nu>
Fri, 6 Dec 2024 18:18:32 +0000 (18:18 +0000)
roles/ironbelly.rb [deleted file]

diff --git a/roles/ironbelly.rb b/roles/ironbelly.rb
deleted file mode 100644 (file)
index e59b468..0000000
+++ /dev/null
@@ -1,65 +0,0 @@
-name "ironbelly"
-description "Master role applied to ironbelly"
-
-default_attributes(
-  :elasticsearch => {
-    :cluster => {
-      :routing => {
-        :allocation => {
-          :disk => {
-            :watermark => {
-              :low => "95%",
-              :high => "98%",
-              :flood_stage => "99%"
-            }
-          }
-        }
-      }
-    },
-    :path => {
-      :data => "/store/elasticsearch"
-    }
-  },
-  :networking => {
-    :interfaces => {
-      :internal => {
-        :interface => "bond0",
-        :role => :internal,
-        :inet => {
-          :address => "10.0.48.10"
-        },
-        :bond => {
-          :mode => "802.3ad",
-          :lacprate => "fast",
-          :xmithashpolicy => "layer3+4",
-          :slaves => %w[enp2s0f0 enp2s0f1]
-        }
-      },
-      :external => {
-        :interface => "bond0.3",
-        :role => :external,
-        :inet => {
-          :address => "184.104.179.138"
-        },
-        :inet6 => {
-          :address => "2001:470:1:fa1::a"
-        }
-      }
-    }
-  },
-  :nginx => {
-    :cache => {
-      :proxy => {
-          :enable => true,
-          :keys_zone => "proxy_cache_zone:256M",
-          :inactive => "180d",
-          :max_size => "51200M"
-      }
-    }
-  }
-)
-
-run_list(
-  "role[equinix-ams]",
-  "recipe[rsyncd]"
-)