Skip to content
Snippets Groups Projects
Commit e6f94626 authored by Marin Jankovski's avatar Marin Jankovski
Browse files

No need to lazy load the attributes, change the string into boolean in spec.

parent e5cd6578
No related branches found
No related tags found
No related merge requests found
......@@ -33,5 +33,13 @@
recursive true
end
configuration = Prometheus.hash_to_yaml({
'global' => {
'scrape_interval' => "#{node['gitlab']['prometheus']['scrape_interval']}s",
'scrape_timeout' => "#{node['gitlab']['prometheus']['scrape_timeout']}s",
},
'scrape_configs' => node['gitlab']['prometheus']['scrape_configs'],
})
file 'Prometheus config' do
path File.join(prometheus_dir, 'prometheus.yml')
......@@ -36,12 +44,6 @@
file 'Prometheus config' do
path File.join(prometheus_dir, 'prometheus.yml')
content lazy { Prometheus.hash_to_yaml({
'global' => {
'scrape_interval' => "#{node['gitlab']['prometheus']['scrape_interval']}s",
'scrape_timeout' => "#{node['gitlab']['prometheus']['scrape_timeout']}s",
},
'scrape_configs' => node['gitlab']['prometheus']['scrape_configs'],
}) }
content lazy { configuration }
owner prometheus_user
mode '0644'
notifies :restart, 'service[prometheus]'
......
......@@ -41,7 +41,7 @@
scheme: https
tls_config:
ca_file: "/var/run/secrets/kubernetes.io/serviceaccount/ca.crt"
insecure_skip_verify: 'true'
insecure_skip_verify: true
bearer_token_file: "/var/run/secrets/kubernetes.io/serviceaccount/token"
kubernetes_sd_configs:
- role: node
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment