Install `alertmanager-webhook-logger`.

This commit is contained in:
Kazuhiro MUSASHI 2020-09-12 15:04:44 +09:00
parent d16d6e46d9
commit d463a2691d
2 changed files with 52 additions and 0 deletions

View File

@ -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

View File

@ -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: