]> git.openstreetmap.org Git - chef.git/commitdiff
Disable chef status alerts for nodes known to be down
authorTom Hughes <tom@compton.nu>
Wed, 16 Sep 2015 23:14:59 +0000 (00:14 +0100)
committerTom Hughes <tom@compton.nu>
Wed, 16 Sep 2015 23:19:40 +0000 (00:19 +0100)
roles/chef-server.rb

index 9ae1fbc0024efd9e822f53e18f346ae318799176..a21cb286b21426c806b158dff44fbbbfa7c90160 100644 (file)
@@ -1,6 +1,20 @@
 name "chef-server"
 description "Role applied to all chef servers"
 
+default_attributes(
+  :munin => {
+    :plugins => {
+      :chef_status => {
+        :ascalon => { :warning => ":", :critical => ":" },
+        :idris => { :warning => ":", :critical => ":" },
+        :norbert => { :warning => ":", :critical => ":" },
+        :smaug => { :warning => ":", :critical => ":" },
+        :zark => { :warning => ":", :critical => ":" }
+      }
+    }
+  }
+)
+
 run_list(
   "recipe[chef::server]"
 )