]> git.openstreetmap.org Git - chef.git/blob - cookbooks/kibana/recipes/default.rb
Use strings for file modes
[chef.git] / cookbooks / kibana / recipes / default.rb
1 #
2 # Cookbook:: kibana
3 # Recipe:: default
4 #
5 # Copyright:: 2015, OpenStreetMap Foundation
6 #
7 # Licensed under the Apache License, Version 2.0 (the "License");
8 # you may not use this file except in compliance with the License.
9 # You may obtain a copy of the License at
10 #
11 #     https://www.apache.org/licenses/LICENSE-2.0
12 #
13 # Unless required by applicable law or agreed to in writing, software
14 # distributed under the License is distributed on an "AS IS" BASIS,
15 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 # See the License for the specific language governing permissions and
17 # limitations under the License.
18 #
19
20 require "yaml"
21
22 include_recipe "accounts"
23 include_recipe "apache"
24
25 apache_module "proxy_http"
26
27 version = node[:kibana][:version]
28
29 remote_file "#{Chef::Config[:file_cache_path]}/kibana-#{version}.tar.gz" do
30   source "https://download.elastic.co/kibana/kibana/kibana-#{version}-linux-x64.tar.gz"
31   not_if { ::File.exist?("/opt/kibana-#{version}/bin/kibana") }
32 end
33
34 directory "/opt/kibana-#{version}" do
35   owner "root"
36   group "root"
37   mode "755"
38 end
39
40 execute "unzip-kibana-#{version}" do
41   command "tar --gunzip --extract --strip-components=1 --file=#{Chef::Config[:file_cache_path]}/kibana-#{version}.tar.gz"
42   cwd "/opt/kibana-#{version}"
43   user "root"
44   group "root"
45   not_if { ::File.exist?("/opt/kibana-#{version}/bin/kibana") }
46 end
47
48 directory "/etc/kibana" do
49   owner "root"
50   group "root"
51   mode "755"
52 end
53
54 directory "/var/run/kibana" do
55   owner "kibana"
56   group "kibana"
57   mode "755"
58 end
59
60 directory "/var/log/kibana" do
61   owner "kibana"
62   group "kibana"
63   mode "755"
64 end
65
66 systemd_service "kibana@" do
67   description "Kibana server"
68   after "network.target"
69   user "kibana"
70   exec_start "/opt/kibana-#{version}/bin/kibana -c /etc/kibana/%i.yml"
71   private_tmp true
72   private_devices true
73   protect_system "full"
74   protect_home true
75   no_new_privileges true
76   restart "on-failure"
77 end
78
79 node[:kibana][:sites].each do |name, details|
80   file "/etc/kibana/#{name}.yml" do
81     content YAML.dump(YAML.safe_load(File.read("/opt/kibana-#{version}/config/kibana.yml")).merge(
82                         "port" => details[:port],
83                         "host" => "127.0.0.1",
84                         "elasticsearch_url" => details[:elasticsearch_url],
85                         "pid_file" => "/var/run/kibana/#{name}.pid",
86                         "log_file" => "/var/log/kibana/#{name}.log"
87                       ))
88     owner "root"
89     group "root"
90     mode "644"
91     notifies :restart, "service[kibana@#{name}]"
92   end
93
94   service "kibana@#{name}" do
95     action [:enable, :start]
96     supports :status => true, :restart => true, :reload => false
97     subscribes :restart, "systemd_service[kibana@]"
98   end
99
100   ssl_certificate details[:site] do
101     domains details[:site]
102     notifies :reload, "service[apache2]"
103   end
104
105   apache_site details[:site] do
106     template "apache.erb"
107     variables details.merge(:passwd => "/etc/kibana/#{name}.passwd")
108   end
109 end