File tree Expand file tree Collapse file tree 2 files changed +9
-0
lines changed
Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -26,6 +26,9 @@ metadata:
2626 {{- include "nts-pool.labels" . | nindent 4 }}
2727spec :
2828 schedule : " {{ .Values.configUpdater.schedule }}"
29+ successfulJobsHistoryLimit : {{ .Values.configUpdater.successfulJobsHistoryLimit }}
30+ failedJobsHistoryLimit : {{ .Values.configUpdater.failedJobsHistoryLimit }}
31+ concurrencyPolicy : " {{ .Values.configUpdater.concurrencyPolicy }}"
2932 jobTemplate :
3033 spec :
3134 template :
Original file line number Diff line number Diff line change @@ -139,6 +139,12 @@ geolocation:
139139configUpdater :
140140 # When to run the config updater jobs
141141 schedule : " * * * * *"
142+ # How many successful job runs to keep in the history
143+ successfulJobsHistoryLimit : 3
144+ # How many failed job runs to keep in the history
145+ failedJobsHistoryLimit : 5
146+ # Concurrency policy for the cron job (Allow, Forbid, Replace)
147+ concurrencyPolicy : " Forbid"
142148 # Override global image settings for the config updater
143149 image :
144150 pullSecrets : null
You can’t perform that action at this time.
0 commit comments