]> git.openstreetmap.org Git - chef.git/commitdiff
Run postgres exporter as user postgres
authorTom Hughes <tom@compton.nu>
Sun, 4 Oct 2020 19:51:41 +0000 (20:51 +0100)
committerTom Hughes <tom@compton.nu>
Sun, 4 Oct 2020 19:51:41 +0000 (20:51 +0100)
cookbooks/postgresql/recipes/default.rb
cookbooks/prometheus/resources/exporter.rb

index b70d167140093e612afc541199bfcc1b398a0fae..0e29b2042dcef2a34c3717283e1f52a947cb624f 100644 (file)
@@ -160,5 +160,6 @@ end
 
 prometheus_exporter "postgres" do
   port 9187
+  user "postgres"
   environment "DATA_SOURCE_NAME" => "user=postgres host=/run/postgresql #{ports.join(',')}"
 end
index 5896a1b46cd530d36ce0f5919ddc4817b717a336..22e364f9f42cd1522c5110603b7ea7171edd2336 100644 (file)
@@ -22,6 +22,7 @@ default_action :create
 property :exporter, :kind_of => String, :name_property => true
 property :port, :kind_of => Integer, :required => [:create]
 property :listen_switch, :kind_of => String, :default => "web.listen-address"
+property :user, :kind_of => String, :default => "root"
 property :options, :kind_of => [String, Array]
 property :environment, :kind_of => Hash, :default => {}
 
@@ -29,7 +30,7 @@ action :create do
   systemd_service service_name do
     description "Prometheus #{new_resource.exporter} exporter"
     type "simple"
-    user "root"
+    user new_resource.user
     environment new_resource.environment
     exec_start "#{executable_path} #{executable_options}"
     private_tmp true