Commit 3d8192f4 authored by Marcel Amirault's avatar Marcel Amirault

Merge branch 'Oestle-master-patch-21485' into 'master'

docs: update default expire_build_artifacts_worker time

See merge request gitlab-org/gitlab!53612
parents 36caacb0 3ed00ce6
...@@ -339,7 +339,7 @@ an expiry for the artifacts, they are marked for deletion right after that date ...@@ -339,7 +339,7 @@ an expiry for the artifacts, they are marked for deletion right after that date
Otherwise, they expire per the [default artifacts expiration setting](../user/admin_area/settings/continuous_integration.md). Otherwise, they expire per the [default artifacts expiration setting](../user/admin_area/settings/continuous_integration.md).
Artifacts are cleaned up by the `expire_build_artifacts_worker` cron job which Sidekiq Artifacts are cleaned up by the `expire_build_artifacts_worker` cron job which Sidekiq
runs every hour at 50 minutes (`50 * * * *`). runs every 7 minutes (`*/7 * * * *`).
To change the default schedule on which the artifacts are expired, follow the To change the default schedule on which the artifacts are expired, follow the
steps below. steps below.
...@@ -350,7 +350,7 @@ steps below. ...@@ -350,7 +350,7 @@ steps below.
your schedule in cron syntax: your schedule in cron syntax:
```ruby ```ruby
gitlab_rails['expire_build_artifacts_worker_cron'] = "50 * * * *" gitlab_rails['expire_build_artifacts_worker_cron'] = "*/7 * * * *"
``` ```
1. Save the file and [reconfigure GitLab](restart_gitlab.md#omnibus-gitlab-reconfigure) for the changes to take effect. 1. Save the file and [reconfigure GitLab](restart_gitlab.md#omnibus-gitlab-reconfigure) for the changes to take effect.
...@@ -362,7 +362,7 @@ steps below. ...@@ -362,7 +362,7 @@ steps below.
```yaml ```yaml
expire_build_artifacts_worker: expire_build_artifacts_worker:
cron: "50 * * * *" cron: "*/7 * * * *"
``` ```
1. Save the file and [restart GitLab](restart_gitlab.md#installations-from-source) for the changes to take effect. 1. Save the file and [restart GitLab](restart_gitlab.md#installations-from-source) for the changes to take effect.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment