File tree Expand file tree Collapse file tree
charts/keepup-helm-scraper Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -2,5 +2,5 @@ apiVersion: v2
22name : keepup-helm-scraper
33description : A Helm chart for scrape charts release information.
44type : application
5- version : 0.4.0
5+ version : 0.4.1
66appVersion : 0.2.4
Original file line number Diff line number Diff line change @@ -4,10 +4,12 @@ metadata:
44 name : {{ .Release.Name }}
55spec :
66 schedule : " {{ .Values.cronjob.schedule }}"
7- successfulJobsHistoryLimit : 3
8- failedJobsHistoryLimit : 1
7+ concurrencyPolicy : Forbid
8+ successfulJobsHistoryLimit : {{ .Values.cronjob.successfulJobsHistoryLimit }}
9+ failedJobsHistoryLimit : {{ .Values.cronjob.failedJobsHistoryLimit }}
910 jobTemplate :
1011 spec :
12+ backoffLimit : {{ .Values.cronjob.backoffLimit }}
1113 template :
1214 spec :
1315 {{- if .Values.rbac.create }}
Original file line number Diff line number Diff line change 66cronjob :
77 schedule : " 0 */3 * * *"
88 restartPolicy : Never
9+ successfulJobsHistoryLimit : 1
10+ failedJobsHistoryLimit : 3
11+ backoffLimit : 3
912
1013rbac :
1114 create : true
You can’t perform that action at this time.
0 commit comments