X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/bb6f7e12b1feddc5e28a6b5a41d648ef34f64887..db461a97bcf17eae463e932f9cf4d6f3cc1bb81f:/cookbooks/prometheus/recipes/default.rb diff --git a/cookbooks/prometheus/recipes/default.rb b/cookbooks/prometheus/recipes/default.rb index 7cfd70b6a..820d46b2c 100644 --- a/cookbooks/prometheus/recipes/default.rb +++ b/cookbooks/prometheus/recipes/default.rb @@ -17,6 +17,7 @@ # limitations under the License. # +include_recipe "git" include_recipe "networking" if node.internal_ipaddress @@ -39,13 +40,24 @@ else end directory "/opt/prometheus" do + action :delete owner "root" group "root" mode "755" + recursive true + not_if { ::Dir.exist?("/opt/prometheus/.git") } +end + +git "/opt/prometheus" do + action :sync + repository "https://github.com/openstreetmap/prometheus-exporters.git" + revision "main" + depth 1 + user "root" + group "root" end prometheus_exporter "node" do - version "1.0.1" port 9100 options "--collector.ntp --collector.processes --collector.interrupts" end