]> git.openstreetmap.org Git - chef.git/blob - cookbooks/db/recipes/base.rb
4acfcc25dac443eddf9c87dc6709436e5e918e22
[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 include_recipe "ruby"
25
26 wal_secrets = data_bag_item("db", "wal-secrets")
27
28 package %w[
29   cmake
30   libosmium2-dev
31   libprotozero-dev
32   libboost-filesystem-dev
33   libboost-program-options-dev
34   libbz2-dev
35   zlib1g-dev
36   libexpat1-dev
37   libyaml-cpp-dev
38   libpqxx-dev
39 ]
40
41 git "/opt/osmdbt" do
42   action :sync
43   repository "https://github.com/openstreetmap/osmdbt.git"
44   revision "v0.5"
45   depth 1
46   user "root"
47   group "root"
48 end
49
50 node[:postgresql][:versions].each do |db_version|
51   directory "/opt/osmdbt/build-#{db_version}" do
52     owner "root"
53     group "root"
54     mode "755"
55   end
56
57   execute "/opt/osmdbt/build-#{db_version}" do
58     action :nothing
59     command "cmake -DPG_CONFIG=/usr/lib/postgresql/#{db_version}/bin/pg_config .."
60     cwd "/opt/osmdbt/build-#{db_version}"
61     user "root"
62     group "root"
63     subscribes :run, "directory[/opt/osmdbt/build-#{db_version}]"
64     subscribes :run, "git[/opt/osmdbt]"
65   end
66
67   execute "/opt/osmdbt/build-#{db_version}/postgresql-plugin/Makefile" do
68     action :nothing
69     command "make"
70     cwd "/opt/osmdbt/build-#{db_version}/postgresql-plugin"
71     user "root"
72     group "root"
73     subscribes :run, "execute[/opt/osmdbt/build-#{db_version}]"
74   end
75
76   link "/usr/lib/postgresql/#{db_version}/lib/osm-logical.so" do
77     to "/opt/osmdbt/build-#{db_version}/postgresql-plugin/osm-logical.so"
78     owner "root"
79     group "root"
80   end
81 end
82
83 package "lzop"
84
85 remote_file "/usr/local/bin/wal-g" do
86   action :create
87   source "https://github.com/wal-g/wal-g/releases/download/v2.0.1/wal-g-pg-ubuntu-20.04-amd64"
88   owner "root"
89   group "root"
90   mode "755"
91 end
92
93 template "/usr/local/bin/openstreetmap-wal-g" do
94   source "wal-g.erb"
95   owner "root"
96   group "postgres"
97   mode "750"
98   variables :s3_key => wal_secrets["s3_key"]
99 end