We have a self-hosted Gitlab running on one instance but every now and then we are facing space issues because the large artifacts filled up the space. We have to go and delete the older artifacts folders manually.
Is there a way to automate this? May be a script which runs overnight and delete the artifacts folder older than say 7 days?
The default expiration is set to 5 days in Gitlab Admin but that does not mean they are deleted from the box.
Turns out, the expiration setting may be ignored by having "Keep artifacts from most recent successful jobs" setting set, and apparently it is enabled by default.
If you go to a pipeline old enough that it should've had its artifacts removed, and see the message
These artifacts are the latest. They will not be deleted (even if expired) until newer artifacts are available.
…then likely you stumble upon this problem. To disable that go to your project
Settings → CI/CD
, expandArtifacts
, uncheckKeep artifacts from most recent successful jobs
. The URL you can use to access it (substitute the angle-bracket placeholders):https://<domain>/<user_or_group>/<project>/-/settings/ci_cd