5 # Copyright:: 2011, OpenStreetMap Foundation
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
11 # https://www.apache.org/licenses/LICENSE-2.0
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.
20 include_recipe "accounts"
22 include_recipe "postgresql"
23 include_recipe "python"
26 passwords = data_bag_item("db", "passwords")
27 wal_secrets = data_bag_item("db", "wal-secrets")
29 postgresql_munin "openstreetmap" do
30 cluster node[:db][:cluster]
31 database "openstreetmap"
34 directory "/srv/www.openstreetmap.org" do
39 rails_port "www.openstreetmap.org" do
40 directory "/srv/www.openstreetmap.org/rails"
43 repository "https://git.openstreetmap.org/public/rails.git"
46 database_host "localhost"
47 database_name "openstreetmap"
48 database_username "openstreetmap"
49 database_password passwords["openstreetmap"]
56 libboost-filesystem-dev
57 libboost-program-options-dev
67 repository "https://github.com/openstreetmap/osmdbt.git"
74 node[:postgresql][:versions].each do |db_version|
75 pg_config = "/usr/lib/postgresql/#{db_version}/bin/pg_config"
76 function_directory = "/srv/www.openstreetmap.org/rails/db/functions/#{db_version}"
78 directory function_directory do
84 execute function_directory do
86 command "make BUNDLE=#{node[:ruby][:bundle]} PG_CONFIG=#{pg_config} DESTDIR=#{function_directory}"
87 cwd "/srv/www.openstreetmap.org/rails/db/functions"
90 subscribes :run, "directory[#{function_directory}]"
91 subscribes :run, "git[/srv/www.openstreetmap.org/rails]"
94 link "/usr/lib/postgresql/#{db_version}/lib/libpgosm.so" do
95 to "#{function_directory}/libpgosm.so"
100 directory "/opt/osmdbt/build-#{db_version}" do
106 execute "/opt/osmdbt/build-#{db_version}" do
108 command "cmake -DPG_CONFIG=/usr/lib/postgresql/#{db_version}/bin/pg_config .."
109 cwd "/opt/osmdbt/build-#{db_version}"
112 subscribes :run, "directory[/opt/osmdbt/build-#{db_version}]"
113 subscribes :run, "git[/opt/osmdbt]"
116 execute "/opt/osmdbt/build-#{db_version}/postgresql-plugin/Makefile" do
119 cwd "/opt/osmdbt/build-#{db_version}/postgresql-plugin"
122 subscribes :run, "execute[/opt/osmdbt/build-#{db_version}]"
125 link "/usr/lib/postgresql/#{db_version}/lib/osm-logical.so" do
126 to "/opt/osmdbt/build-#{db_version}/postgresql-plugin/osm-logical.so"
134 python_package "wal-e" do
138 python_package "boto" do
142 template "/usr/local/bin/openstreetmap-wal-e" do
147 variables :s3_key => wal_secrets["s3_key"]
150 remote_file "/usr/local/bin/wal-g" do
152 source "https://github.com/wal-g/wal-g/releases/download/v1.1/wal-g-pg-ubuntu-20.04-amd64"
158 template "/usr/local/bin/openstreetmap-wal-g" do
163 variables :s3_key => wal_secrets["s3_key"]