From: Tom Hughes Date: Thu, 9 Jan 2025 10:51:56 +0000 (+0000) Subject: Drop scorch role X-Git-Url: https://git.openstreetmap.org./chef.git/commitdiff_plain/HEAD?ds=sidebyside;hp=-c Drop scorch role --- ce052cdacaf188cb7fe2e6c35c0ad64f0e232ff4 diff --git a/roles/ovh.rb b/roles/ovh.rb deleted file mode 100644 index f8391a2aa..000000000 --- a/roles/ovh.rb +++ /dev/null @@ -1,20 +0,0 @@ -name "ovh" -description "Role applied to all servers at OVH" - -default_attributes( - :hosted_by => "OVH", - :location => "Roubaix, France" -) - -override_attributes( - :networking => { - :nameservers => ["213.186.33.99"] - }, - :ntp => { - :servers => ["0.fr.pool.ntp.org", "1.fr.pool.ntp.org", "europe.pool.ntp.org"] - } -) - -run_list( - "role[fr]" -) diff --git a/roles/scorch.rb b/roles/scorch.rb deleted file mode 100644 index 0649374f4..000000000 --- a/roles/scorch.rb +++ /dev/null @@ -1,40 +0,0 @@ -name "scorch" -description "Master role applied to scorch" - -default_attributes( - :devices => { - :ssd_system => { - :comment => "Tune scheduler for system disk", - :type => "block", - :bus => "scsi", - :serial => "3600605b009bbf5601fc3206407a43546", - :attrs => { - "queue/scheduler" => "noop", - "queue/nr_requests" => "256", - "queue/read_ahead_kb" => "2048" - } - } - }, - :networking => { - :interfaces => { - :external => { - :interface => "eth0", - :role => :external, - :inet => { - :address => "176.31.235.79", - :prefix => "24", - :gateway => "176.31.235.254" - }, - :inet6 => { - :address => "2001:41d0:2:fc4f::1", - :prefix => "64", - :gateway => "2001:41d0:2:fcff:ff:ff:ff:ff" - } - } - } - } -) - -run_list( - "role[ovh]" -)