X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/b73176eda2a83b7fc0170a5639ad036b1c897773..cf163679e4cf9c867cde63fe724ba3e578660d0a:/cookbooks/prometheus/recipes/server.rb diff --git a/cookbooks/prometheus/recipes/server.rb b/cookbooks/prometheus/recipes/server.rb index fab3f4652..84b34afc2 100644 --- a/cookbooks/prometheus/recipes/server.rb +++ b/cookbooks/prometheus/recipes/server.rb @@ -48,7 +48,7 @@ end cache_dir = Chef::Config[:file_cache_path] -prometheus_version = "2.38.0" +prometheus_version = "2.39.1" alertmanager_version = "0.24.0" karma_version = "0.108" @@ -111,7 +111,7 @@ archive_file "#{cache_dir}/karma-linux-amd64.tar.gz" do subscribes :extract, "remote_file[#{cache_dir}/karma-linux-amd64.tar.gz]" end -promscale_version = "0.14.0" +promscale_version = "0.16.0" database_version = node[:timescaledb][:database_version] database_cluster = "#{database_version}/main" @@ -159,6 +159,7 @@ systemd_service "promscale" do exec_start "/opt/promscale/bin/promscale --db.uri postgresql:///promscale?host=/run/postgresql&port=5432 --db.connections-max 400" limit_nofile 16384 private_tmp true + private_devices true protect_system "strict" protect_home true no_new_privileges true @@ -302,6 +303,10 @@ systemd_service "prometheus-alertmanager-executable" do notifies :restart, "service[prometheus-alertmanager]" end +link "/usr/local/bin/promtool" do + to "/opt/prometheus-server/prometheus/promtool" +end + template "/etc/prometheus/alertmanager.yml" do source "alertmanager.yml.erb" owner "root" @@ -315,13 +320,23 @@ service "prometheus-alertmanager" do subscribes :restart, "archive_file[#{cache_dir}/alertmanager.linux-amd64.tar.gz]" end -template "/etc/prometheus/amtool.yml" do +directory "/etc/amtool" do + owner "root" + group "root" + mode "755" +end + +template "/etc/amtool/config.yml" do source "amtool.yml.erb" owner "root" group "root" mode "644" end +link "/usr/local/bin/amtool" do + to "/opt/prometheus-server/alertmanager/amtool" +end + template "/etc/prometheus/karma.yml" do source "karma.yml.erb" owner "root" @@ -335,7 +350,7 @@ systemd_service "prometheus-karma" do exec_start "/opt/prometheus-server/karma/karma-linux-amd64 --config.file=/etc/prometheus/karma.yml" private_tmp true private_devices true - protect_system "full" + protect_system "strict" protect_home true no_new_privileges true restart "on-failure"