Install `alertmanager-webhook-logger`.
This commit is contained in:
parent
d16d6e46d9
commit
d463a2691d
|
@ -0,0 +1,50 @@
|
|||
alertmanager_webhook_url = ''
|
||||
alertmanager_webhook_bin = ''
|
||||
|
||||
tag = ''
|
||||
|
||||
# Calculate the Download URL:
|
||||
begin
|
||||
require 'net/http'
|
||||
|
||||
uri = URI.parse('https://github.com/tomtom-international/alertmanager-webhook-logger/releases/latest')
|
||||
|
||||
Timeout.timeout(3) do
|
||||
response = Net::HTTP.get_response(uri)
|
||||
|
||||
tag = $1 if response.body =~ %r{tag\/(\d+\.\d+)}
|
||||
|
||||
alertmanager_webhook_bin = "#{node['alertmanager_webhook']['prefix']}#{tag}#{node['alertmanager_webhook']['postfix']}"
|
||||
|
||||
alertmanager_webhook_url = "#{node['alertmanager_webhook']['url']}/#{tag}/#{alertmanager_webhook_bin}"
|
||||
end
|
||||
rescue
|
||||
# Abort the chef client process:
|
||||
raise 'Cannot connect to http://github.com.'
|
||||
end
|
||||
|
||||
# Download:
|
||||
TMP = "/tmp/#{alertmanager_webhook_bin}"
|
||||
|
||||
execute "wget #{alertmanager_webhook_url} -O #{TMP}"
|
||||
|
||||
# Install:
|
||||
directory node['alertmanager_webhook']['storage'] do
|
||||
owner 'root'
|
||||
group 'root'
|
||||
mode '755'
|
||||
end
|
||||
|
||||
execute "tar zxf #{TMP} -C #{node['alertmanager_webhook']['storage']}"
|
||||
|
||||
# Change Owner and Permissions:
|
||||
file "#{node['alertmanager_webhook']['storage']}alertmanager-webhook-logger" do
|
||||
owner 'root'
|
||||
group 'root'
|
||||
mode '755'
|
||||
end
|
||||
|
||||
# Create Link
|
||||
link "#{node['alertmanager_webhook']['location']}alertmanager-webhook-logger" do
|
||||
to "#{node['alertmanager_webhook']['storage']}alertmanager-webhook-logger"
|
||||
end
|
|
@ -8,6 +8,8 @@ if node['prometheus']['manager']
|
|||
|
||||
include_recipe './alertmanager_install.rb'
|
||||
include_recipe './alertmanager_setup.rb'
|
||||
|
||||
include_recipe './alertmanager_webhook_install.rb'
|
||||
end
|
||||
|
||||
# Install the node_exporter here:
|
||||
|
|
Loading…
Reference in New Issue