X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/3dc196b1e6e54bc0cca3e61a0bb5f6be03ca45d0..1ab88105d7947ab18edf5e9795c2cacb27f479f3:/cookbooks/podman/resources/service.rb diff --git a/cookbooks/podman/resources/service.rb b/cookbooks/podman/resources/service.rb index b48e04ce1..d2ee90705 100644 --- a/cookbooks/podman/resources/service.rb +++ b/cookbooks/podman/resources/service.rb @@ -25,6 +25,7 @@ property :service, String, :name_property => true property :description, String, :required => true property :image, String, :required => true property :ports, Hash +property :environment, Hash, :default => {} action :create do systemd_service new_resource.service do @@ -33,7 +34,7 @@ action :create do notify_access "all" environment "PODMAN_SYSTEMD_UNIT" => "%n" exec_start_pre "/bin/rm --force %t/%n.ctr-id" - exec_start "/usr/bin/podman run --cidfile=%t/%n.ctr-id --cgroups=no-conmon --userns=auto --label=io.containers.autoupdate=registry --network=slirp4netns:mtu=1500 #{publish_options} --rm --sdnotify=conmon --detach --replace --name=%N #{new_resource.image}" + exec_start "/usr/bin/podman run --cidfile=%t/%n.ctr-id --cgroups=no-conmon --userns=auto --label=io.containers.autoupdate=registry --network=slirp4netns:mtu=1500 #{publish_options} #{environment_options} --rm --sdnotify=conmon --detach --replace --name=%N #{new_resource.image}" exec_stop "/usr/bin/podman stop --ignore --time=10 --cidfile=%t/%n.ctr-id" exec_stop_post "/usr/bin/podman rm --force --ignore --cidfile=%t/%n.ctr-id" timeout_start_sec 180 @@ -73,4 +74,10 @@ action_class do "--publish=127.0.0.1:#{host}:#{guest}" end.join(" ") end + + def environment_options + new_resource.environment.collect do |key, value| + "-e '#{key}=#{value}'" + end.join(" ") + end end