]> git.openstreetmap.org Git - chef.git/blob - cookbooks/community/recipes/default.rb
5ad6e7afb961804c8dbbb0bcb4ec7e97304ed0c5
[chef.git] / cookbooks / community / recipes / default.rb
1 #
2 # Cookbook:: community
3 # Recipe:: default
4 #
5 # Copyright:: 2021, 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 "docker"
21 include_recipe "git"
22 include_recipe "ssl"
23
24 ssl_certificate "community.openstreetmap.org" do
25   domains ["community.openstreetmap.org", "community.osm.org"]
26 end
27
28 # passwords = data_bag_item("community", "passwords")
29
30 # postgresql_user "community_user" do
31 #   cluster node[:db][:cluster]
32 #   password passwords["database"]
33 # end
34
35 # postgresql_database "community_db" do
36 #   cluster node[:db][:cluster]
37 #   owner "community_user"
38 # end
39
40 # postgresql_extension "hstore" do
41 #   cluster node[:db][:cluster]
42 #   database "community_db"
43 # end
44
45 # postgresql_extension "pg_trgm" do
46 #   cluster node[:db][:cluster]
47 #   database "community_db"
48 # end
49
50 directory "/srv/community.openstreetmap.org" do
51   owner "root"
52   group "root"
53   mode "755"
54 end
55
56 directory "/srv/community.openstreetmap.org/shared" do
57   owner "community"
58   group "community"
59   mode "755"
60 end
61
62 git "/srv/community.openstreetmap.org/docker" do
63   action :sync
64   repository "https://github.com/discourse/discourse_docker.git"
65   revision "master"
66   depth 1
67   user "root"
68   group "root"
69 end
70
71 # TBC: discourse docker templates
72 #   web.ssl.template.yml
73 #   redis.template.yml
74 # TBC: discourse launcher rebuild