chef/site-cookbooks/kosmos_gitea/recipes/backup.rb
Râu Cao e0fb84e56c
Store Gitea data (avatars, attachments, etc.) in Garage/S3
Also adds a new garage gateway role, which only allows RPC (inter-node)
traffic to Garage.
2022-11-26 13:05:07 +01:00

13 lines
282 B
Ruby

#
# Cookbook:: kosmos_gitea
# Recipe:: backup
#
# The MIT License (MIT)
#
unless node.chef_environment == "development"
# backup the data dir and the config files
node.override["backup"]["archives"]["gitea"] = [node["gitea"]["working_directory"]]
include_recipe "backup"
end