Skip to content

Commit f77ef4b

Browse files
committed
jobs/bump-lockfile: lower number of artifacts to keep
This job was taking up 7G of storage on the PVC in the FCOS pipeline. Since it runs tests on all architectures it will naturally take up way more storage as it archives all of those kola logs. Let's lower the number of artifacts it stores to 30 to alleviate this storage usage.
1 parent 053ebb1 commit f77ef4b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jobs/bump-lockfile.Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ properties([
2929
]),
3030
buildDiscarder(logRotator(
3131
numToKeepStr: '100',
32-
artifactNumToKeepStr: '100'
32+
artifactNumToKeepStr: '30'
3333
)),
3434
durabilityHint('PERFORMANCE_OPTIMIZED')
3535
])

0 commit comments

Comments
 (0)