]> git.openstreetmap.org Git - chef.git/blob - cookbooks/db/recipes/base.rb
6d6bc8ddc90b7c65c618ec8d2658a0fec662a3a7
[chef.git] / cookbooks / db / recipes / base.rb
1 #
2 # Cookbook Name:: db
3 # Recipe:: base
4 #
5 # Copyright 2011, 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 include_recipe "postgresql"
21 include_recipe "git"
22 include_recipe "python"
23
24 passwords = data_bag_item("db", "passwords")
25 wal_secrets = data_bag_item("db", "wal-secrets")
26
27 postgresql_munin "openstreetmap" do
28   cluster node[:db][:cluster]
29   database "openstreetmap"
30 end
31
32 directory "/srv/www.openstreetmap.org" do
33   group "rails"
34   mode 0o2775
35 end
36
37 ruby_version = if node[:lsb][:release].to_f >= 18.04
38                  "2.5"
39                else
40                  "2.3"
41                end
42
43 rails_port "www.openstreetmap.org" do
44   ruby ruby_version
45   directory "/srv/www.openstreetmap.org/rails"
46   user "rails"
47   group "rails"
48   repository "https://git.openstreetmap.org/public/rails.git"
49   revision "live"
50   database_host "localhost"
51   database_name "openstreetmap"
52   database_username "openstreetmap"
53   database_password passwords["openstreetmap"]
54   gpx_dir "/store/rails/gpx"
55 end
56
57 db_version = node[:db][:cluster].split("/").first
58 pg_config = "/usr/lib/postgresql/#{db_version}/bin/pg_config"
59 function_directory = "/srv/www.openstreetmap.org/rails/db/functions/#{db_version}"
60
61 directory function_directory do
62   owner "rails"
63   group "rails"
64   mode 0o755
65 end
66
67 execute function_directory do
68   action :nothing
69   command "make PG_CONFIG=#{pg_config} DESTDIR=#{function_directory}"
70   cwd "/srv/www.openstreetmap.org/rails/db/functions"
71   user "rails"
72   group "rails"
73   subscribes :run, "directory[#{function_directory}]"
74   subscribes :run, "git[/srv/www.openstreetmap.org/rails]"
75 end
76
77 link "/usr/lib/postgresql/#{db_version}/lib/libpgosm.so" do
78   to "#{function_directory}/libpgosm.so"
79   owner "root"
80   group "root"
81 end
82
83 package "lzop"
84
85 python_package "wal-e" do
86   python_version "3"
87 end
88
89 python_package "boto" do
90   python_version "3"
91 end
92
93 template "/usr/local/bin/openstreetmap-wal-e" do
94   source "wal-e.erb"
95   owner "root"
96   group "postgres"
97   mode 0o750
98   variables :s3_key => wal_secrets["s3_key"]
99 end