summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarin Jankovski <marin@gitlab.com>2018-10-01 14:39:44 +0000
committerMarin Jankovski <marin@gitlab.com>2018-10-01 14:39:44 +0000
commit9d88152ddb85aa0597eb5b668e7089de2b654dcc (patch)
tree8c3e5145de98c363901d44da807bd1a8bd398405
parent1b7fd53ae37bb7836e7fd3be80077717d1b3cd4d (diff)
parent159b650d746426f0713b12cecbfb409ee198213f (diff)
downloadgitlab-ce-9d88152ddb85aa0597eb5b668e7089de2b654dcc.tar.gz
Merge branch 'be-more-agressive-cleaning-up-review-apps' into 'master'
Cleanup review apps more rapidly See merge request gitlab-org/gitlab-ce!22019
-rwxr-xr-xscripts/review_apps/automated_cleanup.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/review_apps/automated_cleanup.rb b/scripts/review_apps/automated_cleanup.rb
index ea53f89c844..a5f0ec372d8 100755
--- a/scripts/review_apps/automated_cleanup.rb
+++ b/scripts/review_apps/automated_cleanup.rb
@@ -97,13 +97,13 @@ end
automated_cleanup = AutomatedCleanup.new
timed('Review apps cleanup') do
- automated_cleanup.perform_gitlab_environment_cleanup!(days_for_stop: 5, days_for_delete: 6)
+ automated_cleanup.perform_gitlab_environment_cleanup!(days_for_stop: 2, days_for_delete: 3)
end
puts
timed('Helm releases cleanup') do
- automated_cleanup.perform_helm_releases_cleanup!(days: 7)
+ automated_cleanup.perform_helm_releases_cleanup!(days: 3)
end
exit(0)