]> git.openstreetmap.org Git - chef.git/blob - cookbooks/db/recipes/base.rb
Merge remote-tracking branch 'github/pull/349' into master
[chef.git] / cookbooks / db / recipes / base.rb
1 #
2 # Cookbook:: 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 "accounts"
21 include_recipe "git"
22 include_recipe "postgresql"
23 include_recipe "python"
24
25 passwords = data_bag_item("db", "passwords")
26 wal_secrets = data_bag_item("db", "wal-secrets")
27
28 ruby_version = node[:passenger][:ruby_version]
29 db_version = node[:db][:cluster].split("/").first
30 pg_config = "/usr/lib/postgresql/#{db_version}/bin/pg_config"
31 function_directory = "/srv/www.openstreetmap.org/rails/db/functions/#{db_version}"
32
33 postgresql_munin "openstreetmap" do
34   cluster node[:db][:cluster]
35   database "openstreetmap"
36 end
37
38 directory "/srv/www.openstreetmap.org" do
39   group "rails"
40   mode "2775"
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   build_assets false
51   database_host "localhost"
52   database_name "openstreetmap"
53   database_username "openstreetmap"
54   database_password passwords["openstreetmap"]
55   gpx_dir "/store/rails/gpx"
56 end
57
58 directory function_directory do
59   owner "rails"
60   group "rails"
61   mode "755"
62 end
63
64 execute function_directory do
65   action :nothing
66   command "make BUNDLE=bundle#{ruby_version} PG_CONFIG=#{pg_config} DESTDIR=#{function_directory}"
67   cwd "/srv/www.openstreetmap.org/rails/db/functions"
68   user "rails"
69   group "rails"
70   subscribes :run, "directory[#{function_directory}]"
71   subscribes :run, "git[/srv/www.openstreetmap.org/rails]"
72 end
73
74 link "/usr/lib/postgresql/#{db_version}/lib/libpgosm.so" do
75   to "#{function_directory}/libpgosm.so"
76   owner "root"
77   group "root"
78 end
79
80 package %w[
81   cmake
82   libosmium2-dev
83   libprotozero-dev
84   libboost-filesystem-dev
85   libboost-program-options-dev
86   libbz2-dev
87   zlib1g-dev
88   libexpat1-dev
89   libyaml-cpp-dev
90   libpqxx-dev
91 ]
92
93 git "/opt/osmdbt" do
94   action :sync
95   repository "https://github.com/openstreetmap/osmdbt.git"
96   revision "master"
97   depth 1
98   user "root"
99   group "root"
100 end
101
102 directory "/opt/osmdbt/build-#{db_version}" do
103   owner "root"
104   group "root"
105   mode "755"
106 end
107
108 execute "/opt/osmdbt/CMakeLists.txt" do
109   action :nothing
110   command "cmake -DPG_CONFIG=/usr/lib/postgresql/#{db_version}/bin/pg_config .."
111   cwd "/opt/osmdbt/build-#{db_version}"
112   user "root"
113   group "root"
114   subscribes :run, "git[/opt/osmdbt]"
115 end
116
117 execute "/opt/osmdbt/build-#{db_version}/postgresql-plugin/Makefile" do
118   action :nothing
119   command "make"
120   cwd "/opt/osmdbt/build-#{db_version}/postgresql-plugin"
121   user "root"
122   group "root"
123   subscribes :run, "execute[/opt/osmdbt/CMakeLists.txt]"
124 end
125
126 link "/usr/lib/postgresql/#{db_version}/lib/osm-logical.so" do
127   to "/opt/osmdbt/build-#{db_version}/postgresql-plugin/osm-logical.so"
128   owner "root"
129   group "root"
130 end
131
132 package "lzop"
133
134 python_package "wal-e" do
135   python_version "3"
136 end
137
138 python_package "boto" do
139   python_version "3"
140 end
141
142 template "/usr/local/bin/openstreetmap-wal-e" do
143   source "wal-e.erb"
144   owner "root"
145   group "postgres"
146   mode "750"
147   variables :s3_key => wal_secrets["s3_key"]
148 end