]> git.openstreetmap.org Git - chef.git/blob - cookbooks/podman/resources/site.rb
Use prometheus-exporters github releases instead of slow git clone
[chef.git] / cookbooks / podman / resources / site.rb
1 #
2 # Cookbook:: podman
3 # Resource:: podman_site
4 #
5 # Copyright:: 2023, 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 require "yaml"
21
22 unified_mode true
23
24 default_action :create
25
26 property :site, String, :name_property => true
27 property :image, String, :required => true
28 property :port, Integer, :default => 8080
29 property :aliases, :kind_of => Array, :default => []
30 property :environment, Hash, :default => {}
31
32 action :create do
33   podman_service new_resource.site do
34     description "Container service for #{new_resource.site}"
35     image new_resource.image
36     ports external_port => new_resource.port
37     environment new_resource.environment
38   end
39
40   ssl_certificate new_resource.site do
41     domains Array(new_resource.site) + new_resource.aliases
42   end
43
44   apache_site new_resource.site do
45     cookbook "podman"
46     template "apache.erb"
47     variables :port => external_port, :aliases => new_resource.aliases
48     notifies :reload, "service[apache2]"
49   end
50 end
51
52 action :delete do
53   apache_site new_resource.site do
54     action [:disable, :delete]
55     notifies :reload, "service[apache2]"
56   end
57
58   podman_service new_resource.site do
59     action :delete
60   end
61
62   node.rm_normal(:podman, :ports, new_resource.site)
63 end
64
65 action_class do
66   def ports_file
67     "#{Chef::Config[:file_cache_path]}/podman-ports.yml"
68   end
69
70   def ports
71     @ports ||= if ::File.exist?(ports_file)
72                  YAML.safe_load_file(ports_file)
73                else
74                  {}
75                end
76   end
77
78   def external_port
79     unless ports.include?(new_resource.site)
80       port = 40000
81
82       port += 1 while ports.values.include?(port)
83
84       ports[new_resource.site] = port
85
86       ::File.write(ports_file, YAML.dump(ports))
87     end
88
89     ports[new_resource.site]
90   end
91 end