diff options
author | Achilleas Pipinellis <axilleas@axilleas.me> | 2017-06-06 17:42:30 +0200 |
---|---|---|
committer | Achilleas Pipinellis <axilleas@axilleas.me> | 2017-06-06 17:42:30 +0200 |
commit | 6d3b4b376c29749d928a8111bc84603c25b2ccc4 (patch) | |
tree | ed0043fe0a321873d5b2a2fff8e97155ce5f7853 /doc/administration | |
parent | e6ec94134a1dd448a530ca2d8b6b73c0d7fa68f4 (diff) | |
download | gitlab-ce-6d3b4b376c29749d928a8111bc84603c25b2ccc4.tar.gz |
Add more info on artifacts expiry datedocs/expiring-artifacts
Diffstat (limited to 'doc/administration')
-rw-r--r-- | doc/administration/job_artifacts.md | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/doc/administration/job_artifacts.md b/doc/administration/job_artifacts.md index 7b0610ae414..5599435564e 100644 --- a/doc/administration/job_artifacts.md +++ b/doc/administration/job_artifacts.md @@ -82,6 +82,42 @@ _The artifacts are stored by default in 1. Save the file and [restart GitLab][] for the changes to take effect. +## Expiring artifacts + +If an expiry date is used for the artifacts, they are marked for deletion +right after that date passes. Artifacts are cleaned up by the +`expire_build_artifacts_worker` cron job which is run by Sidekiq every hour at +50 minutes (`50 * * * *`). + +To change the default schedule on which the artifacts are expired, follow the +steps below. + +--- + +**In Omnibus installations:** + +1. Edit `/etc/gitlab/gitlab.rb` and comment out or add the following line + + ```ruby + gitlab_rails['expire_build_artifacts_worker_cron'] = "50 * * * *" + ``` + +1. Save the file and [reconfigure GitLab][] for the changes to take effect. + +--- + +**In installations from source:** + +1. Edit `/home/git/gitlab/config/gitlab.yml` and add or amend the following + lines: + + ```yaml + expire_build_artifacts_worker: + cron: "50 * * * *" + ``` + +1. Save the file and [restart GitLab][] for the changes to take effect. + ## Set the maximum file size of the artifacts Provided the artifacts are enabled, you can change the maximum file size of the |